在链接jquery mobile中传递参数

Posted

技术标签:

【中文标题】在链接jquery mobile中传递参数【英文标题】:Passing parameters in link jquery mobile 【发布时间】:2014-07-02 04:23:42 【问题描述】:

我目前正在使用以下代码将参数从我的主页传递到 jquery mobile 中的弹出窗口:

<a onclick= DisplayEditIdPopUP('" . $row ['IdentificationTypeID'] ."','".$custid."','". $num."','".$row ['CustomerIdentificationId']."')>Edit</a>

但是,我设置了一个缩放插件,这似乎破坏了我的点击。有没有办法通过常规锚标记传递参数,而不使用点击事件?由于使用以下代码调用弹出窗口有效,但目前显然没有传递任何参数?

<a href='#addCustId' data-rel='popup' data-position-to='window' data-transition='pop' class='ui-btn ui-btn-c' >New</a>

谢谢

【问题讨论】:

你第二次没有通过 onclick 事件..... 我知道,这是我的问题,有没有办法在不使用点击事件的情况下将参数传递给弹出窗口。我已编辑问题以使其更清楚。 【参考方案1】:

存在几种解决方案:

解决方案 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);
);

示例:

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', "#index",function () 
            $(document).on('click', "#changePage",function ()      
                $.mobile.changePage('second.html',  dataUrl : "second.html?paremeter=123", data :  '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, 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>  
   </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:

您也可以像这样访问上一页的数据:

$(document).on('pagebeforeshow', '#index',function (e, data) 
    alert(data.prevPage.attr('id'));
);   

prevPage 对象保存完整的前一页。

解决方案 4:

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

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

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

了解更多关于他们的信息here

【讨论】:

以上是关于在链接jquery mobile中传递参数的主要内容,如果未能解决你的问题,请参考以下文章

用于 hashbang 导航的 jQuery Mobile 和“查询参数”

jquery怎么实现页面之间传递参数?

如何在 SAP NetWeaver Mobile First 适配器中传递标头

jQuery:如何在事件处理函数中获取事件对象而不将其作为参数传递?

加载新页面后未呈现文本 - JQuery Mobile

jQuery UI 问题。如何将参数传递给函数