我正在尝试从此网站的下拉菜单中选择一个选项。http://www.shrpsports.com/nhl/stand.htm ..我正在尝试选择选项,然后单击“提交”按钮。我知道在此论坛中已经提出过几个类似的问题,但是我无法理解/使用我的解决方案。如果任何人都可以告诉我如何选择选项,那么我将处理其余部分。到目前为止,这是我尝试过的...
Dim ie As InternetExplorer
Dim html As HTMLDocument
Set ie = CreateObject("InternetExplorer.Application")
ie.Visible = True
ie.Navigate2 "http://www.shrpsports.com/nhl/stand.htm"
Do While ie.Busy
Loop
Set html = ie.Document
Cells(20, 1).Value = html.DocumentElement.innerHTML
Set season1 = html.getElementsByName("season") '''
但是我无法继续进行...我想选择一个赛季,即2011-12。