网页代码是
<div id="lookBtn" class="ResumeIcon LookIcon" onclick="LookLink(1)">
</div>
请问我要怎么模拟点击这个按钮
msdn webbrowser
HTMLDocumentClass doc = (HTMLDocumentClass)webBrowser.Document;
然后通过doc找到你需要操作的节点。
调用节点的Click方法即可。
jquery :$('#lookBtn').trigger("click");