自动播放帮助Javascript和iframe

时间:2012-03-20 02:09:29

标签: javascript jquery html iframe

我希望我的VibeDeck脚本能够自动播放。它使用HTML中的href =“#play”行来点击它。

但问题是,我试过让父窗口重定向到#play。以及重定向到#play的实际iframe窗口。但它仍然不会自己发挥。我真的想知道是否有任何方法可以自动调用此脚本的播放功能。它目前位于

http://12-3.co.uk/

这是底部的播放列表。

1 个答案:

答案 0 :(得分:0)

您可以尝试在网站的正文标记中添加onLoad="functionYouCallToStartPlaying()"属性。

或者:

<script>
function checkIfDefaultPage(pageAddress)
{
   //basically check if the user is on the homepage and you have no #play in the URL, 
   //so the URL does not become http://12-3.co.uk/#play#play
   if((pageAddress == "http://12-3.co.uk")||(pageAddress == "http://12-3.co.uk/")) 
      return true;
   return false;
}

function jsRedirect()
{
   if(checkIfDefaultPage(Document.Location))
        Document.Location = Document.Location + "#play";
}
</script>

<body onLoad="jsRedirect();">

这可能会使JavaScript重定向对您有用。

编辑:避免多次重定向的Document.Location问题的灵感位于here