苹果手机端触屏自动播放音乐

//触发音乐播放和暂停,解决ios不能自动播放音乐问题
var once=1;
(function(){
    $("body").bind(‘touchstart‘,function(){
        if(once==1){
        bmusic();
        }
    })
})()
function bmusic(){

    if (window.HTMLAudioElement) {
        try {
            var oAudio = document.getElementById(‘myaudio‘);
            var btn = document.getElementById(‘play‘);
            var audioURL = document.getElementById(‘audiofile‘);

            //Skip loading if current file hasn‘t changed.
            if (audioURL.value !== currentFile) {
                oAudio.src = audioURL.value;
                currentFile = audioURL.value;
            }

            // Tests the paused attribute and set state.
            if (oAudio.paused) {
                oAudio.play();
                once=0;
            }

        }
        catch (e) {
            // Fail silently but show in F12 developer tools console
            if(window.console && console.error("Error:" + e));
        }
    }
}

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。