1
我真的不明白.replace的語法:D有人可以修復我的代碼嗎?現在它只從URL中刪除& chat = 1,但我需要它從& chat = 1刪除所有內容到URL的結尾。 範例網址:從url中刪除參數
http://xxxxxxx.xx/index.php?menu=1&submenu=1&chat=1&od=3&komu=1
結果我需要什麼:
http://xxxxxxx.xx/index.php?menu=1&submenu=1
結果是什麼我的代碼現在做:
http://xxxxxxx.xx/index.php?menu=1&submenu=1&od=3&komu=1
代碼我現在使用的是什麼:
location.href=location.href.replace(/&?chat=([^&]$|[^&]*)/i, "");
Thx for he LP,對不起,我的英語:)
THX解釋!問題解決了 :) – 2014-09-01 14:51:16