直接將下面的代碼保存為test.vbs雙擊運(yùn)行就可,如果不能使用,請(qǐng)看自己的電腦是否vbs被禁用。
代碼如下:
strURL = InputBox("請(qǐng)輸入要讀的網(wǎng)址", "朗讀網(wǎng)頁(yè)", "http://www.jb51.net/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