当前位置:编程学习 > VB >>

求助vb webbrowser 查找网页元素问题

网页源码如下 ,如何用vb webbrowser 找到 “信息添加”  的按钮并点击?       
 
<td width="150" height="27" align="left" valign="middle" onMouseOut="this.className='bg2';" onMouseOver="this.className='bg';" class="bg2"><img src="../images/back_image/back_left_6.gif" width="7" height="10"> <a href=nimda_news_mange.asp target=mainFrame>信息管理</a></td>
      </tr>
  
        <tr>
        <td width="150" height="27" align="left" valign="middle" onMouseOut="this.className='bg2';" onMouseOver="this.className='bg';" class="bg2"><img src="../images/back_image/back_left_6.gif" width="7" height="10"><a href=nimda_news.asp target=mainFrame> 信息添加</a></td>
      </tr>
           <tr>
        <td width="150" height="27" align="left" valign="middle" onMouseOut="this.className='bg2';" onMouseOver="this.className='bg';" class="bg2"><img src="../images/back_image/back_left_6.gif" width="7" height="10"><a href=nimda_Honor.asp target=mainFrame> 证书添加 </a></td>
      </tr> array= webbrowser.document.getElementsByTag("a")

for each t in array
   if t.innerText="信息添加" then t.click()
next

以上是伪代码,根据以上的信息你应当能够找到足够的信息解决问题了
补充:VB ,  基础类
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,