0

このコードに何か問題がありますか? Web ページの読み込み時に音声ファイルが再生されません。

$(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

1つ欠けています); 最後に私は信じています。したがって、準備完了関数を閉じます。

于 2013-03-22T15:31:55.907 に答える