我正在使用jQuery Mobile构建一个移动网站,我希望显示一个5秒钟的页面,然后让它自动转到下一页。
我在互联网上看到了这段代码,但我认为它不适用于jQuery Mobile:
<META HTTP-EQUIV=Refresh CONTENT="10; URL=index.html/">
非常感谢任何帮助!
答案 0 :(得分:0)
我愿意:
setInterval(function(){ //redirect function; }, 5000);
答案 1 :(得分:0)
$(document).delegate('#registrationCon', 'pageinit', function() {
console.log("testing again!");
setTimeout("window.location.href='#homePage';", 7000);
});