0

为 Text to Speech 应用程序创建了代码,但没有任何反应。它有什么问题?我正在使用 Windows 7。

<html>
<head>
    <body>

    Set sapi=CreateObject("sapi.spvoice")
                <button id="Speak">Speak</button>

        <button id="SaveAudio">Save Audio to File</button>
              <textarea id="Data" style="height: 100%; width: 75%; font-size: 22pt" name="Data">
    </textarea>
    <textarea id="TextStatus" style="width: 20%; height: 20%;font-size: 16pt; border:none"></textarea>
    </div>
</body>
</html>
4

1 回答 1

0

`Set sapi = CreateObject("Sapi.SpVoice"); 将失败,因为 SAPI 对象对于脚本来说是不安全的。请参阅我对这个问题的回答以查看一些替代方案。

于 2013-10-31T22:36:41.763 回答