1

在 jQuery Mobile 中,当进行输入并单击“下一步”按钮时,我有几个链式对话框一个接一个地滑入/滑出。但是,只要单击对话框标题内的关闭按钮,我就想返回触发第一个对话框的初始页面。通常,每个对话框中的关闭按钮会返回到触发它的页面/框。但在我的应用程序中,我需要全部覆盖它们才能返回第一页!

我的代码:

<div class="ui-block-b">
    <a data-role="button" data-theme="b" data-icon="arrow-r" data-iconpos="right" 
        data-transition="slide" href="nextpage.html" data-rel="dialog">
        next
    </a>
</div>

谢谢!

编辑:文档说

链接对话框:“请注意:如果一个对话框打开另一个对话框(链接),则使用 data-rel="back" 类型的链接关闭最后一个对话框将始终导航到上一个对话框,直到类型为 data-role 的根页面="page" 已到达。这保证了对话框之间的一致导航。[http://jquerymobile.com/demos/1.2.0-beta.1/docs/pages/page-dialogs.html]

4

1 回答 1

1

您可以覆盖为对话框定义的关闭方法$.mobile.dialog.prototype.close

<script>

    $.mobile.dialog.prototype.close = function(){

        console.log("close");

        // DO SOMETHING HERE - EX: REDIRECTING TO MAIN PAGE
        $.mobile.changePage("index.html");
    };

    $(function() {
        console.log("document loaded");         
    });

</script>
于 2012-10-11T11:16:30.047 回答