在JQuery Mobile中的两个不同文件中的两个页面之间传递参数

前端之家收集整理的这篇文章主要介绍了在JQuery Mobile中的两个不同文件中的两个页面之间传递参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Jquery中,在两个页面之间传递参数的最佳方法是什么?

假设我有一个page1.html和page2.html

我想将参数id从page1传递给page2.

这样做的最佳方式是什么?

我目前使用:

$.mobile.navigate(“#workOrderDetailsPage?id =”woId);

但那是单页内的两页.但是如何使用JQuery Mobile在两个单独的文件中为两个页面执行此操作?

@H_403_15@解决方法
页面转换之间的数据/参数操作

页面转换期间,可以从一个页面向另一个页面发送参数.它可以通过几种方式完成.

参考:https://stackoverflow.com/a/13932240/1848600

解决方案1:

您可以使用changePage传递值:

$.mobile.changePage('page2.html',{ dataUrl : "page2.html?paremeter=123",data : { 'paremeter' : '123' },reloadPage : true,changeHash : true });

并按如下方式阅读:

$(document).on('pagebeforeshow',"#index",function (event,data) {
    var parameters = $(this).data("url").split("?")[1];;
    parameter = parameters.replace("parameter=","");  
    alert(parameter);
});

[实施例] [3]:

的index.html

<!DOCTYPE html>
  <html>
    <head>
    <Meta charset="utf-8" />
    <Meta name="viewport" content="widdiv=device-widdiv,initial-scale=1.0,maximum-scale=1.0,user-scalable=no" />
    <Meta name="apple-mobile-web-app-capable" content="yes" />
    <Meta name="apple-mobile-web-app-status-bar-style" content="black" />
    <title>
    </title>
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
    <script src="http://www.dragan-gaic.info/js/jquery-1.8.2.min.js">
    </script>
    <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>  
    <script>
        $(document).on('pagebeforeshow',function () {
            $(document).on('click',"#changePage",function () {     
                $.mobile.changePage('second.html',{ dataUrl : "second.html?paremeter=123",reloadPage : false,changeHash : true });
            }); 
        }); 

        $(document).on('pagebeforeshow',"#second",function () {
            var parameters = $(this).data("url").split("?")[1];;
            parameter = parameters.replace("parameter=","");  
            alert(parameter);
        });         
    </script>
   </head>
   <body>
    <!-- Home -->
    <div data-role="page" id="index">
        <div data-role="header">
            <h3>
                First Page
            </h3>
        </div>
        <div data-role="content">
          <a data-role="button" id="changePage">Test</a>
        </div> <!--content-->
    </div><!--page-->

  </body>
</html>

second.html

<!DOCTYPE html>
  <html>
    <head>
    <Meta charset="utf-8" />
    <Meta name="viewport" content="widdiv=device-widdiv,user-scalable=no" />
    <Meta name="apple-mobile-web-app-capable" content="yes" />
    <Meta name="apple-mobile-web-app-status-bar-style" content="black" />
    <title>
    </title>
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
    <script src="http://www.dragan-gaic.info/js/jquery-1.8.2.min.js">
    </script>
    <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>  
   </head>
   <body>
    <!-- Home -->
    <div data-role="page" id="second">
        <div data-role="header">
            <h3>
                Second Page
            </h3>
        </div>
        <div data-role="content">

        </div> <!--content-->
    </div><!--page-->

  </body>
</html>

解决方案2:

或者,您可以为存储目的创建持久性javascript对象.由于ajax用于页面加载(并且页面不以任何方式重新加载),该对象将保持活动状态.

var storeObject = {
    firstname : '',lastname : ''
}

示例:http://jsfiddle.net/Gajotres/9KKbx/

解决方案3:

您还可以访问上一页的数据,如下所示:

$('#index').live('pagebeforeshow',function (e,data) {
    alert(data.prevPage.attr('id'));
});

prevPage对象包含完整的上一页.

解决方案4:

作为最后的解决方案,我们有一个漂亮的localStorage HTML实现.它仅适用于HTML5浏览器(包括Android和iOS浏览器),但所有存储的数据都通过页面刷新保持不变.

if(typeof(Storage)!=="undefined") {
    localStorage.firstname="Dragan";
    localStorage.lastname="Gaic";            
}

示例:http://jsfiddle.net/Gajotres/J9NTr/

有关这方面的更多信息,请参阅我的博客article.

原文链接:https://www.f2er.com/jquery/180770.html

猜你在找的jQuery相关文章