我有一个应用程序,我正在使用 jquery-mobile,它有一个标题,它有 2 个按钮“home”和“back”,当我点击后退按钮时,它应该终止页面并且应该返回,但这没有发生. 谁能帮助我如何使用jquery mobile后退按钮来实现这一点。
我的代码:
<div id="home" data-role="page">
<div data-role="header" data-position="fixed" data-add-back-btn="true">
<a id="backBtn" href="#" data-icon="arrow-l">Back</a>
<h1>SDCard Explorer</h1>
<a id="homeBtn" href="index.html" data-icon="home" data-transition="pop">Home</a>
</div>
</div>
这是我使用的 jquery 库:
<href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css" />
<src="jquery.mobile-1.0.1.min.js" />
<src="http://code.jquery.com/jquery-1.7.1.min.js" />