jquery 移动显示页面 5 秒然后重定向

jquery mobile display page for 5 seconds then redirect

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

我在网上看到这段代码,但我认为它不适用于 jQuery 手机:

<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);
});