是否有可能改變你的網址(即刪除網址參數)與JavaScript而不刷新頁面?用javascript更改網址?
if ($(location).attr("href").substring("notSupported")) {
var url = $(location).attr("href").match(".*index.action");
window.location.assign(url[0]);
}
這個工作正常,但是由於assign重載頁面,它會進入無限循環的重載。幫幫我!
是的,看看HTML5的歷史API和'window.history'。只適用於現代瀏覽器。 –