本文介绍了JQuery Mobile 2011 年 6 月 3 日最新版本 - 没有后退按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

现在是 2011 年 6 月 3 日,我使用的是 JQuery Mobile 的最新版本.

我的问题是后退按钮不见了.

我怎样才能让后退按钮显示出来?

更新:

我已经试过了,但仍然没有返回按钮.

<div data-role="page" data-theme="a" data-iscroll="enable" data-add-back-btn="true"><div data-role="header" data-theme="a" data-backbtn="true"><h1>标题在这里</h1><a href="index.php" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-left jqm-home">首页</a><a href="view.php" data-icon="arrow-r" data-theme="a" data-iconpos="right">事件</a></div><!--/header --><div data-role="内容">
解决方案

如果你看一下 5 月的 jQuery 移动博客文章,后退按钮现在默认关闭.

要重新启用后退按钮,只需将 data-add-back-btn="true" 添加到页面容器:

<div data-role="header"><h1>首页</h1>

<div data-role="内容"><p><a href="#page2">page2</a></p>

<div data-role="footer"><h4>可选页脚</h4>

<div data-role="page" id="page2" data-add-back-btn="true"><div data-role="header"><h1>第二页</h1>

<div data-role="内容"><p><a href="#page1">page1</a></p>

<div data-role="footer"><h4>可选页脚</h4>

jsfiddle 后退按钮示例

It's the 3rd June 2011 and I'm using JQuery Mobile's latest version.

My problem is that the back button has gone.

How can I get the back button to show up please?

UPDATE:

I've tried this but still not back button.

<body>
<div data-role="page" data-theme="a" data-iscroll="enable" data-add-back-btn="true">

    <div data-role="header" data-theme="a" data-backbtn="true">
        <h1>title here</h1>

        <a href="index.php" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-left jqm-home">Home</a>
        <a href="view.php" data-icon="arrow-r" data-theme="a" data-iconpos="right">Events</a>
    </div><!-- /header -->

    <div data-role="content">
解决方案

If you look at the jQuery mobile blog post in may, the back button is now off by default.

To reenable the back button simply add data-add-back-btn="true" to the page container:

<div data-role="page" id="page1">
    <div data-role="header">
        <h1>First page</h1>
    </div>
    <div data-role="content">
        <p><a href="#page2">page2</a></p>
    </div>
    <div data-role="footer">
        <h4>Optional footer</h4>
    </div>
</div>
<div data-role="page" id="page2" data-add-back-btn="true">
    <div data-role="header">
        <h1>Second Page</h1>
    </div>
    <div data-role="content">
        <p><a href="#page1">page1</a></p>
    </div>
    <div data-role="footer">
        <h4>Optional footer</h4>
    </div>
</div>

Example of the back button on jsfiddle

这篇关于JQuery Mobile 2011 年 6 月 3 日最新版本 - 没有后退按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-06 20:47