当我点击" Play"这个简单的代码工作正常按钮:
<html>
<head>
<script src="https://code.responsivevoice.org/responsivevoice.js"></script>
</head>
<body>
<input
onclick="responsiveVoice.speak('Lily, you can not just freeze me out like this.','US English Female'); responsiveVoice.speak('love you.','US
English Female');"
type="button"
value="Play"
/>
</body>
</html>
然而,当我试图将它放入一个名为on load的函数时,它没有工作:
<html>
<head>
<script src="https://code.responsivevoice.org/responsivevoice.js"></script>
<script type="text/javascript">
function read(){
responsiveVoice.speak('Lily, you can not just freeze me out like this.','US English Female');
responsiveVoice.speak('Love you.','US English Female');
}
</script>
</head>
<body onload="javascript:read();">
</body>
</html>
你知道问题是什么吗?
答案 0 :(得分:3)
如果你看一下响应式语音代码,他们的代码中会有超过200毫秒的超时:
a.enableFallbackMode()) : setTimeout(function() {
var b = setInterval(function() {
var c = window.speechSynthesis.getVoices();
0 != c.length || null != a.systemvoices &&
0 != a.systemvoices.length ? (console.log("RV: Voice support ready"),
a.systemVoicesReady(c),
clearInterval(b)) : (console.log("Voice support NOT ready"),
a.voicesupport_attempts++,
a.voicesupport_attempts > a.VOICESUPPORT_ATTEMPTLIMIT && (clearInterval(b),
null != window.speechSynthesis ? a.iOS ? (a.iOS9 ? a.systemVoicesReady(a.cache_ios9_voices) : a.systemVoicesReady(a.cache_ios_voices),
console.log("RV: Voice support ready (cached)")) : (console.log("RV: speechSynthesis present but no system voices found"),
a.enableFallbackMode()) :
a.enableFallbackMode()))
}, 100)
}, 100);
a.Dispatch("OnLoad")
如果您在超时之前尝试使用语音,您将点击此控制台日志:
1570RV:错误:找不到配音:美国英语女性
根据我的经验不好, 应该 会抛出错误。
如果你想继续使用这个脚本,唯一的解决办法就是等待至少201毫秒才能等待所有的声音加载(但你只需要这样做一次)
let readItOnce = false;
function read(){
const readIt = () => {
readItOnce = true;
responsiveVoice.speak('Lily, you can not just freeze me out like this.','US English Female');
responsiveVoice.speak('Love you.','US English Female');
}
if (!readItOnce) { setTimeout(readIt, 201)}
else { readIt(); }
}
还要执行此处的建议:https://stackoverflow.com/a/36654326/561731在函数的onload中。
<html>
<head>
<script src="https://code.responsivevoice.org/responsivevoice.js"></script>
<script type="text/javascript">
let readItOnce = false;
function read(){
const readIt = () => {
readItOnce = true;
responsiveVoice.speak('Lily, you can not just freeze me out like this.','US English Female');
responsiveVoice.speak('Love you.','US English Female');
}
if (!readItOnce) { setTimeout(readIt, 201)}
else { readIt(); }
}
</script>
</head>
<body onload="read();">
</body>
</html>
答案 1 :(得分:1)
<body onload="javascript:read();">
VS
<body onload="read();">
答案 2 :(得分:0)
只需等待一秒钟即可加载they suggest
<html>
<head>
<script src="https://code.responsivevoice.org/responsivevoice.js"></script>
<script type="text/javascript">
function read(){
responsiveVoice.speak('Lily, you can not just freeze me out like this.','US English Female');
responsiveVoice.speak('Love you.','US English Female');
}
setTimeout(function(){ read(); }, 1000);
</script>
</head>
<body>
</body>
</html>