我正在使用 RoR,并从 JQuery 将 JPlayer 添加到我的项目中。我将它添加到文件夹资产中,在 html 中我有这个:
<title>jPlayer as an audio player</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="/jPlayer/skin/pink.flag/jplayer.pink.flag.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
//<![CDATA[
$(document).ready(function(){
$("#jquery_jplayer_1").jPlayer({
ready: function () {
$(this).jPlayer("setMedia", { mp3:"http://www.jplayer.org/audio/mp3/TSP-01-Cro_magnon_man.mp3"});
},swfPath: "js",supplied: "mp3",wmode: "window"
});
});
//]]>
</script>
但我得到这个错误:
未捕获的类型错误:对象 [对象对象] 没有方法“jPlayer”
在这一行:$("#jquery_jplayer_1").jPlayer({
O 将对应的gem添加到Gem文件中,所以不知道会出什么问题。任何想法?谢谢!