在 WebBrowser 中有这个页面 ( http://gttweb.5t.torino.it/gtt/en/percorsi/percorsi-ricerca.jsp ) 并且有 "destinationCity" ComboBox
。在 VB.NET 中,我使用:
Dim DestinationComboBox As HtmlElement = MainWebBrowser.Document.All.Item("destinationCity")
DestinationComboBox.SetAttribute("selectedindex", 1)
更改 ComboBox selectedIndex,但在 Silverlight 中(在此WebBrowser
)中只有该InvokeScript
功能.. 如何更改 selectedIndex 使用InvokeScript()
?我试过了
InvokeScript("eval", "document.getElementById('destinationCity').selectedindex = 4")
但它不起作用..请帮助!