我为 Text to Speech 创建了代码并在 Windows 7 中安装了 Microsoft Speech SDK。当我在 Internet Explorer 中打开此代码时,没有任何反应。
<html>
<head>
</head>
<body>
<input type="text" name="textinput" size="30">
<script type="text/vbscript">
Sub SpeakIt
Dim msg, sapi
msg= textinput.Value
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg
End Sub
</script>
<input type="button" value="speak" onClick="SpeakIt">
</body>
</html>