我想知道是否有可能。我有以下結構中的兩個jQuery Mobile的頁面如何識別當前頁面加載從哪個鏈接
<div data-role="page" id="main_demo">
<div data-role="header" data-position="fixed">
<h3>Header</h3>
</div>
<div data-role="content">
<a data-role="button" href="#main_demo1">Next</a>
</div>
<div data-role="footer" data-position="fixed">
<h3>Footer</h3>
</div>
</div>
<div data-role="page" id="main_demo1">
<div data-role="header" data-position="fixed">
<h3>Header</h3>
</div>
<div data-role="content">
<a data-role="button" href="#main_demo">Back Using Tag</a>
<a data-role="button" data-rel="back">Back Using Rel Back</a>
</div>
<div data-role="footer" data-position="fixed">
<h3>Footer</h3>
</div>
</div>
當用戶進入第二頁,按Buttons
該網頁上如何從哪個按鈕,無論是從一個具有href
屬性或識別用戶返回到第一頁其他有data-rel
屬性
我想知道爲什麼你想這樣做,當你可以通過data-rel做到這一點?您可以將頁面名稱存儲在本地存儲中,並且可以使用本地存儲ID –
移回。爲什麼不將當前頁面保存在JavaScript變量中,然後在back()函數中檢查它? –
@RohitTiwari我有一些要求都認爲在我的工作中使用 – Blu