我的 JW Player 事件在 IE 之外的所有内容中都可以正常工作,但我无法弄清楚为什么它不会启动该事件。在其他浏览器中,点击事件会导致视频使用锚点点击事件中的值进行更改,但在 IE 中它什么也不做。
代码是:
<div id="videoscreen"></div>
<a href="javascript:void(0);" onclick="jwPlayerInstance.sendEvent('load', '[URL TO VIDEO]'); jwPlayerInstance.sendEvent('play'); return false;" class="videoplayerlink">Load Video</a>
<script type="text/javascript">
//<![CDATA[
var jwPlayerInstance;
jQuery(document).ready(function()
{
jwplayer("videoscreen").setup(
{
flashplayer: "/swf/player.swf",
skin: "/swf/modieus.swf",
file: "[URL TO VIDEO]",
height: 190,
width: 248,
autostart: "false",
wmode: "transparent",
bgcolor: "#000000"
}});
jwPlayerInstance = document.getElementById('videoscreen');
}});
//]]>
任何想法都会很棒!
干杯,本