移动浏览器上的setTimeout不起作用

时间:2014-12-02 01:35:36

标签: javascript audio mobile case settimeout

我试图在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);          
    }

我再说一遍,在桌面设备上运行得很好,但在移动设备上却不行。

感谢您的帮助。

0 个答案:

没有答案