我希望嵌入的livestream.com链接随着时间而变化,但是在网站上的容器中完成,而不是整个页面。
因此,对于6 AM-8AM,嵌入式内容加载“livestream.com/video1” 但是在上午8点到下午3点,嵌入式内容会加载“livestream.com/video2”
如果没有完全重定向,这可能吗?我该怎么做?
答案 0 :(得分:0)
你会明白这个想法
$(document).ready(function(){
$('a')[0].click();
});
var randompage = ['https://www.spirithoods.com/pages/dummypage','https://lifehacker.com','http://www.lipsum.com']
setInterval(function() {
rndm=Math.floor(Math.random() * 3) + 0
$('a').attr('href',randompage[rndm]);
$('a')[0].click();
}, 5000);
.iframes{
width:100%;
height:400px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<a href='https://www.spirithoods.com/pages/dummy-page' target='iframename' class='clickit'>hello</a>
<iframe name='iframename' class='iframes'>
</iframe>