[已解决]如何获取网页属性URL地址
本帖最后由 yang3114 于 2012-5-14 10:05 编辑比如http://www.hao522.com这个网址,它的网页属性是http://123.sogou.com/nh这个,怎么样可以获取到。 看源代码:
<div id="frame">
<iframe id="haoframe" src="http://123.sogou.com/nh/" frameborder="0" scrolling="no" noresize="noresize"></iframe>
</div> 看源代码:
<div id="frame">
<iframe id="haoframe" src="http://123.sogou.com/nh/" frameborder="0" scrolling="no" noresize="noresize"></iframe>
</div> #include <IE.au3>
Local $oIE = _IECreate("http://www.hao522.com")
Local $oiframe = _IETagNameGetCollection($oIE, "iframe", 0)
MsgBox(4096, "", $oiframe.src)
页:
[1]