亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

VBS讀網(wǎng)頁的代碼

 更新時間:2009年04月21日 19:14:08   作者:  
不錯的,讀取網(wǎng)頁的代碼,更多功能,可以自行研究了。
直接將下面的代碼保存為test.vbs雙擊運行就可,如果不能使用,請看自己的電腦是否vbs被禁用。
復(fù)制代碼 代碼如下:

strURL = InputBox("請輸入要讀的網(wǎng)址", "朗讀網(wǎng)頁", "http://chabaoo.cn/index.htm")
If strURL = "" Then
Wscript.quit
End If
Set ie = WScript.CreateObject("InternetExplorer.Application")
ie.visible = True
ie.navigate strURL
Do
Wscript.Sleep 200
Loop Until ie.ReadyState = 4
strContent = ie.document.body.innerText
Set objVoice = CreateObject("SAPI.SpVoice")
Set objVoice.Voice = objVoice.GetVoices("Name=Microsoft Simplified Chinese").Item(0)
objVoice.Rate = 5 '速度:-10,10 0
objVoice.Volume = 100 '聲音:0,100 100
objVoice.Speak strContent

相關(guān)文章

最新評論