0

这段代码有什么问题吗?加载网页时音频文件不播放。

$(document).ready(function() {

    var audioElement = document.createElement('audio');
    audioElement.setAttribute('src','content/audio/tune.mp3');
    audioElement.setAttribute('autoplay', 'autoplay');
    //audioElement.load()
    $.get();
    audioElement.addEventListener("load", function() {
    audioElement.play();
    }, true);

    audioElement.play();

    });
4

1 回答 1

1

缺少一个);最后我相信。所以你关闭了准备功能。

于 2013-03-22T15:31:55.907 回答