如何pass a hash value manually to a next page
在jQuery Mobile的和收到的pagecreate/pageshow
通額外的價值使用手動chagePage
當按鈕點擊第1頁
$.mobile.changePage('#page2?val=1', {
transition: 'slideup'
}
);
HTML網頁代碼
被我試過以下<html>
<head><title>jQuery Mobile Test</title></head>
<body>
<div id="page1" data-role="page">
<div data-role="header">
<h1>Page 1</h1>
</div>
<div data-role="content">
Place content here
// i tried this too but didnt receive at the pagecreate of pge 1
<a href="#page2?val=1" data-role="button">Send Value</a>
</div>
<div data-role="footer">
<h1>Footer</h1>
</div>
</div>
<div id="page2" data-role="page" data-add-back-btn="true">
<div data-role="header">
<h1>Page 2</h1>
</div>
<div data-role="content">
Place content here
</div>
<div data-role="footer">
<h1>Footer</h1>
</div>
</div>
</body>
</html>
如果'#page2'是一樣的DOM的一部分,大約只設置一個局部變量和檢索它的方式是什麼? – shanabus 2012-03-08 15:11:47
如果頁面得到刷新,那麼我將失去價值,page1和page2在一個html文件只 – Hunt 2012-03-08 15:13:40