什么是通过在jQuery Mobile的页面之间参数的正确途径。 在Q&jQuery Mobile的的,有一个插件一些建议。 它是强制性的? 请让我知道正确的方法。 有没有一个具体的答案。 我要传递的参数在我的页面所有链接。
http://view.jquerymobile.com/master/demos/faq/pass-query-params-to-page.php
什么是通过在jQuery Mobile的页面之间参数的正确途径。 在Q&jQuery Mobile的的,有一个插件一些建议。 它是强制性的? 请让我知道正确的方法。 有没有一个具体的答案。 我要传递的参数在我的页面所有链接。
http://view.jquerymobile.com/master/demos/faq/pass-query-params-to-page.php
这是可能的页面转换过程中从一个页面传递一个参数/ s到另一个。 它可以在几个方面进行。
参考: 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);
});
的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:
您也可以从这样的前一页访问数据:
$('#index').live('pagebeforeshow', function (e, data) {
alert(data.prevPage.attr('id'));
});
prevPage对象保存完整的前一页。
解决方案4:
作为最后的解决方案,我们有一个漂亮的HTML实现的localStorage的。 它只能与HTML5的浏览器(包括Android和iOS的浏览器)工作,但所有的存储数据是通过页面刷新持久。
if(typeof(Storage)!=="undefined") {
localStorage.firstname="Dragan";
localStorage.lastname="Gaic";
}
例如: http://jsfiddle.net/Gajotres/J9NTr/
如果您想了解更多关于这个话题来看看这个文章 。 你会发现有几个例子的解决方案。
您还可以在链接的外部关系(对我和我的目的及其容易),所以我想分享这个使用它:
HTML:
<a href="page1.htm?structure='123'">Structure</a>
JS:
$( document ).on( "pageinit", "#page1", function( event ) {
var parameters = $(this).data("url").split("?")[1];
parameter = parameters.replace("structure=","");
alert(parameter);
});
在我的情况下,该结构=“123”是动态创建的,没有人写的固定值“123”的动态目的:-)
感谢您的上述帖子的网址分裂(请。有利于他的岗位),这只是一个另外/进一步的解释。