为什么此代码在我的 Android Tablet (Samsung) + Desktop Windows 10 上运行良好,但在我的 2 Android Phone (LG4) 和 Samsung 3 上运行良好
<script>
setTimeout(responsiveVoice.speak("Welcome to the Responsive Voice website"),15000);
</script>
调用此函数有完全相同的问题(适用于平板电脑但不适用于手机):
function x() {
responsiveVoice.speak("Hello");
}
function y() {
x();
}
y();