ページ遷移
間のデータ/パラメータ操作はページ遷移中にあるページから別のページにパラメータ/ 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);
});
[例] [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', "#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:私たちはのlocalStorageの気の利いたHTMLの実装を持って最後の解決策として
。 HTML5ブラウザ(AndroidおよびiOSブラウザを含む)でのみ動作しますが、保存されたすべてのデータはページの更新を通じて永続的です。
if(typeof(Storage)!=="undefined") {
localStorage.firstname="Dragan";
localStorage.lastname="Gaic";
}
例:http://jsfiddle.net/Gajotres/J9NTr/
詳細情報
あなたがこのトピックについての詳細を知りたい場合は、このarticleを見てみましょう。いくつかの例があるソリューションがあります。
同様の質問への回答もご覧ください。 http://stackoverflow.com/a/35259962/3209859 – Kzar