我想在一個按鈕的點擊更新菜單項的HREF更新查詢字符串,這裏是我的代碼創建或無插件
function refreshReportMenu(){
var ts = '&ts=' + new Date().getTime().string(16);
$('ul.nav a.reps').each(function(){
var href = $(this).attr('href');
$(this).attr('href', href + ts);
});
}
但這裏的問題是,它總是追加TS到HREF,我想更新ts值,如果它已經在href中。
你們是不是要更新瀏覽器的查詢字符串,或者只是更換任何查詢字符串中的鏈接href屬性? – adeneo 2013-03-01 11:43:59
只在href屬性 – coure2011 2013-03-02 19:10:19