1

我有一个 android 应用程序,我想添加一个功能来检查用户是否连接到互联网。如果不是,我会显示一个警报,然后想将它们重定向到“页面”之外。然而,问题是我使用的是 Jquery Mobile Multi-Page 模板。所以从技术上讲,我不是重定向到一个页面,它是一个 div。我的代码如下:

networkState = navigator.network.connection.type; 

if (networkState == Connection.NONE) { alert('未检测到互联网连接'); window.location.href = "#seconddiv" };

但是,这不起作用,如果我将其设置为 index.html,它会立即回到应用程序的开头,这是不可接受的。有谁知道如何让它重定向到一个div?

4

1 回答 1

2

试试这个$.mobile.changePage功能:http: //jquerymobile.com/test/docs/api/methods.html

$.mobile.changePage($("#seconddiv"));
于 2012-09-28T14:07:53.257 回答