如何使用webbrowser控件循環遍歷HTML元素?
C#代碼:bool bl_exist;foreach(HtmlElement ele in WB1.Document.All) { if(ele.InnerText=="下一頁>") //遍歷查找“下一頁”的元素 { bl_exist=true; ele.InvokeMember("Click"); break; } }
如何使用webbrowser控件循環遍歷HTML元素?
C#代碼:bool bl_exist;foreach(HtmlElement ele in WB1.Document.All) { if(ele.InnerText=="下一頁>") //遍歷查找“下一頁”的元素 { bl_exist=true; ele.InvokeMember("Click"); break; } }