为什么这段代码适用于我的Android平板电脑(三星)+桌面Windows 10,但不适用于我的2 Android手机(LG4)和三星3
<script>
setTimeout(responsiveVoice.speak("Welcome to the Responsive Voice website"),15000);
</script>
调用此功能有完全相同的问题(适用于平板电脑但不适用于手机):
function x() {
responsiveVoice.speak("Hello");
}
function y() {
x();
}
y();