jQuery移动显示页面5秒钟,然后重定向

jquery mobile display page for 5 seconds then redirect

本文关键字:然后 重定向 5秒钟 移动 显示 jQuery      更新时间:2023-09-26

我正在使用jQuery Mobile构建一个移动网站,我想显示一个页面大约5秒钟,然后让它自动将您重定向到下一页。

我在互联网上看到了这段代码,但我认为它不适用于jQuery Mobile:

<META HTTP-EQUIV=Refresh CONTENT="10; URL=index.html/">

任何帮助将不胜感激!

我会这样:

setInterval(function(){ //redirect function; }, 5000);
$(document).delegate('#registrationCon', 'pageinit', function() {
console.log("testing again!");
setTimeout("window.location.href='#homePage';", 7000);
});