我收到以下错误。我正在使用 HTML5。我正在尝试添加音频文件。错误是:
无法获取属性“jPlayer”的值:对象为空或未定义
它在
这是我的脚本:
$(document).ready(function () {
$("#jpId").jPlayer({
ready: function () {
this.element.jPlayer("setFile", "../179_short_all-the-family-together_0033.mp3"); // Defines the counterpart mp3 and ogg files
},
oggSupport: true,
});
});
我的 HTML5 div:
<div id="jpId">
</div>
我试过使用标签,但我需要音乐在 IE8、IE9、Firefox、Chrome 中工作。我知道我需要添加 .ogg 文件,但希望在添加其他文件类型之前让它工作。谢谢!