我想使用 jQuery 移动应用程序在我的 android 设备上自定义返回键。
为此,我首先得到一个活动页面 id 并根据它们工作。
像这样
if($.mobile.activePage.attr("id") == "page"){
}
但现在我使用多个 div,应用程序将在运行时显示和隐藏 div。
jQuery中有什么方法可以在运行时找到活动的div id?或者还有其他方法吗?
$.mobile.activeDiv.attr("id")..
像这样的东西。?
我想使用 jQuery 移动应用程序在我的 android 设备上自定义返回键。
为此,我首先得到一个活动页面 id 并根据它们工作。
像这样
if($.mobile.activePage.attr("id") == "page"){
}
但现在我使用多个 div,应用程序将在运行时显示和隐藏 div。
jQuery中有什么方法可以在运行时找到活动的div id?或者还有其他方法吗?
$.mobile.activeDiv.attr("id")..
像这样的东西。?
工作示例:http: //jsfiddle.net/Gajotres/MN2N6/
alert($.mobile.activePage.find('.content_div:visible').attr('id'));