下面是段获取批处理之家主页源码并另存为txt的vbs代码,但不知道为什么成功获取的源码总是不能写入txt(但可以写入剪贴板)?请大家帮忙看下到底问题出在哪里?难道是文本格式的问题?- Dim url, ie
- url = "http:\\www.bathome.net"
- set ie = CreateObject("InternetExplorer.Application")
- ie.navigate url
- while ie.busy :wscript.sleep 1000:wend
- vbstr = ie.document.body.innerHTML
- ie.Document.parentwindow.clipboarddata.setdata "text" , vbstr '这是写入剪贴板
- ie.Quit
- Set ie = Nothing
- Set fso = CreateObject("scripting.filesystemobject")
- Set text = fso.opentextfile("temp.txt" , 1 , true)
- text.Write vbstr '写入txt出错
- text.Close
- Set text = nothing
- Set fso = Nothing
复制代码
[ 本帖最后由 batman 于 2011-3-13 01:24 编辑 ] |