0

我的网站上有一个FirstPage.html

在网站加载(FirstPage.html加载)时,我想显示 aWelcomePage.html至少 5 秒(即使FirstPage.html加载完成)。

有人可以帮忙吗!

4

1 回答 1

0

为什么不把 WelcomePage.html 设为实际的主页,然后在后台将 FirstPage.html 添加到 jquery mobile DOM 中。然后,在 X 秒后或页面完成加载到 DOM 后重定向到 FirstPage.html。

这是文档:http: //jquerymobile.com/test/docs/pages/page-cache.html

更新

使用我给你的 Ink,你需要在一个单独的 JS 文件中添加以下代码。

$.mobile.loadPage( FirstPage.html, { showLoadMsg: false } );

您需要将此 JS 文件包含在 WelcomePage.html 的头部,在您包含 jQuery 之后,但在您包含 jQuery mobile 之前。

这会将 FirstPage.html 加载到 DOM 中。然后调用你的其他代码(我认为)

于 2012-08-19T16:31:30.353 回答