首先,我没有使用WP JWPlayer插件。 (而且我不想要它。那就是另一个故事)
在模板文件中:
<div id='myJWPlayer'></div>
<script>
jQuery(document).ready(function(){
jwplayer("myJWPlayer").setup({
playlist: "http://www.example.com/playlist.xml",
listbar: {
position: 'right',
size: 250
},
width: 700,
height: 400
});
});
</script>
它无法正常工作,因为甚至 jwplayer("myJWPlayer")
来电 不会被触发。
注意:此代码完全适用于纯HTML文件。
好吗?
答案 0 :(得分:1)
<div id='myJWPlayer'></div>
<script>
jQuery(document).ready(function(){
jwplayer("myJWPlayer").setup({
//YOU FORGOT TO CLOSE DOUBLE QUOTES
playlist: "http://www.example.com/playlist.xml",
listbar: {
position: 'right',
size: 250
},
width: 700,
height: 400
});
});
</script>
how-to-generate-a-valid-playlistxml
jw-player-xml-playlist-and-javascript
getting-started-with-the-wordpress-plugin
jw-player-plugin-for-wordpress
wordpress-video-tutorial-how-to-install-jw-player-plugin
希望以上信息有助于:)
答案 1 :(得分:1)
实际上我需要以WP方式正确排队JS调用。不是像<script ....js />
这样的普通HTML方式。得到了答案: