我希望我的VibeDeck脚本能够自动播放。它使用HTML中的href =“#play”行来点击它。
但问题是,我试过让父窗口重定向到#play。以及重定向到#play的实际iframe窗口。但它仍然不会自己发挥。我真的想知道是否有任何方法可以自动调用此脚本的播放功能。它目前位于
这是底部的播放列表。
答案 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。