码迷,mamicode.com
首页 > Web开发 > 详细

Webbrowser checkbox

时间:2015-04-16 23:19:12      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:

var
  i:integer;
  t:OleVariant;
begin
  t := EmbeddedWB1.Document;
  for i := 0 to t.all.length - 1 do
  begin
    if t.all.item(i).tagName = ‘INPUT‘ then
    begin
      if t.all.item(i).type=‘checkbox‘ then
      begin
        if t.all.item(i).checked then
           ListBox1.Items.Add(t.all.item(i).name+‘选中‘)
        else
           ListBox1.Items.Add(t.all.item(i).name+‘未选中‘);
      end;
    end;
  end;

end;

 

 

http://www.cnblogs.com/linyawen/archive/2011/09/01/2161743.html

http://www.cnblogs.com/davyjiang/articles/1514044.html

http://www.caogenit.com/caogenxueyuan/bianchengyuyan/Csharp/1720.html

 

Webbrowser checkbox

标签:

原文地址:http://www.cnblogs.com/CodeGear/p/4433335.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!