0

我有一个应用程序,我正在使用 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" />
4

2 回答 2

0

你好,你可以试试这个:

<!DOCTYPE html>
 <html>
  <head>
     <!--here links to the jQuery Mobile Library -->
  </head>
  <body>
   <div id="Page" data-role="page" data-theme="a">
    <div data-role="header" data-position="fixed">
     <a href="#YourWishPage" class="BackButton" data-icon="arrow-l">Back</a>
      <h1>Tite</h1>
     </div>
    </div>
  </body>
</html>
于 2012-09-27T05:55:35.970 回答
0
<!DOCTYPE html>
 <html>
  <head>
    <!--here links to the jQuery Mobile Library -->
   </head>
  <body>
    <div id="Page" data-role="page" data-theme="a">
     <div data-role="header" data-position="fixed">
     <a href="javascript:GoBack()" class="BackButton" data-icon="arrow-l">Back</a>
    <h1>Tite</h1>
  </div>
 </div>
 </body>
</html>

这里是JS文件中的函数

function GoBack(){
    history.go(-1);
}

它应该在艺术中发挥作用

于 2012-09-27T09:01:42.137 回答