我想找到2年合同的价格,并在一个信息箱中显示。
Dim MyPage
Dim Price
Set MyPage=CreateObject("Microsoft.XMLDOM")
MyPage.load("http://www.verizonwireless.com/b2c/store/controller?item=phoneFirst&action=viewPhoneDetail&selectedPhoneId=5723")
Wscript.Sleep 2000
Set Price = MyPage.getElementsByTagName("span")
For Each Elem In Price
MsgBox(Elem.firstChild.nodeValue)
Next
我理解我完全错了,但我甚至不知道从哪里开始。我喜欢这样写简单的程序,但我只需要帮助开始。任何想法都会有帮助!