2013-03-26 116 views
0

我在頁面上有一些標籤(使用jquery mobile)。但是,當我更改標籤時,我想刷新頁面。如何在點擊鏈接時刷新頁面

這是我在我的網頁:

<li><a href="#" data-icon="arrow-r" data-tab-class="tab-info">Info</a></li> 
<li><a href="#" data-icon="arrow-r" data-tab-class="tab-insights">Insights</a></li> 

我已經嘗試添加一個js重新加載到我的HREF是這樣的:

<li><a href="#" data-icon="arrow-r" data-tab-class="tab-info">Info</a></li> 
<li><a href="javascript:history.go(0)" data-icon="arrow-r" data-tab-class="tab-insights">Insights</a></li> 

然而,這種重新加載頁面和你的地方回到第一個標籤。

回答

2

要刷新當前頁面,請使用下面的代碼。

$('.selector').on('click', function() { 

// get ID of the current page 
var refreshpage = '#' + $.mobile.activePage[0].id; 

// this will refresh the same page 
$.mobile.changePage(refreshpage, { 
    allowSamePageTransition: true 
}); 
});