4

我是一名 Iphone 开发人员,现在正在使用 phonegap 制作跨平台应用程序。

我已经开始为 uiDesgin 学习 jqueryMobile。它很好。

问题就在这里,我担心的是,我如何将值从一个 HTML 类传递给其他类,就像我们在 IOS 或 java 中所做的那样。有人建议我使用创建一个全局jquery.js文件,将所有变量保留在那里并访问你应用程序。

但我不明白。有人建议我使用本地存储来存储值并在使用后删除。我很困惑,真的无法弄清楚如何从类中传输值以及如何保留变量的引用和以及如何访问它们。电话间隙建议使用本地存储,但只是为了保持变量引用,

我觉得不好。请告诉我如何开始。

谢谢 。

4

2 回答 2

2

我只是猜测我从你的文本中理解的东西,但我认为你正在搜索的是如何在不同 HTML 的页面之间传递 jQuery Mobile 中的参数(我建议的方式 2 对于不同的 html 是最简单的,否则相同的 html 不同的页面采取解决方案 1 或 3)。

有以下三种方式:

1) 使用 HTML5 属性

a) 在 HTML 第 1 页中,您有一个链接,您需要在第 2 页知道 ID“1234”,我希望您了解此 ID 可以动态创建:

<a data-emp="1234" id="button" href="#home>

b) 在 HTML 第 2 页或其他地方:

<div id="showParameter"></div>

c) 在 JS 中,无论您想要什么,例如 pagebeforeload 或 onClick():示例是 onClick:

$("#button").on('click', function (data) { 
var anId = $(this).attr("data-emp"); 
$("#showParameter").html(anId) 
});

2) 使用 URL / Hashtag 传递参数

通过网址:

a)第1页上的链接:

<a href="page2.htm?yourID='1234'"></a>

b) 第 2 页上的 JS,例如 pageInit 事件:

var parameters = $(this).data("url").split("?")[1]; 
parameter = parameters.replace("yourID=","");

3) via Hashtag: http://api.jquerymobile.com/jQuery.mobile.changePage/通过传递一个hashtag,google了一下有很多资源。

现在您可以使用第 2 页上的参数,例如使用参数或任何您想要的调用 ajax。

希望这可以帮助。

于 2013-09-19T07:09:41.183 回答
1

解决方案1:

您可以使用 changePage 函数传递值:

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

或使用这样的按钮:

<a href="second.html?paremeter=123" data-role="button">Or through a basic link</a>

并像这样阅读它们:

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

索引.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("paremeter=","");  
            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">Pass parameters with changePage function</a>
                        <a href="second.html?paremeter=123" data-role="button">Or through a basic link</a>
        </div> <!--content-->
    </div><!--page-->

  </body>
</html>

第二个.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>

此解决方案用于多 HTML 模板,其中一个 jQuery Mobile 页面也是一个 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/

更多信息

如果您想了解有关此主题的更多信息,请查看这篇文章。您将找到更详细的解释以及工作示例。

于 2013-09-19T07:42:49.693 回答