我试图在iOS Safari和Android浏览器中运行此脚本但不起作用,在任何桌面浏览器中都能正常运行。
case 4:
if(estado == '1'){
alert('case 4!!');
$('#respuesta').empty();
$('#respuesta').append('Well done!<br>That was correct.');
$('#estado').val(2);
document.getElementById('well_done').play();
//when the audio finish, must wait 5 seconds to play another one.
setTimeout(function(){
document.getElementById('question_2').play();
},5000);
}
我再说一遍,在桌面设备上运行得很好,但在移动设备上却不行。
感谢您的帮助。