1
修改URL我想刪除我的URL字符串code=hads1328fas&
,使如何由JavaScript或jQuery的
前
http://example.com/main/index.php?code=hads1328fas&store=food#home
後
http://example.com/main/index.php?store=food#home
然而,字符串code=hads1328fas&
可能並不總是相同的,所以下面的代碼在這種情況下不起作用。
var url = window.location.href;
url.replace('code=hads1328fas&')
是沒有什麼辦法,有可能的情況下?
感謝
正則表達式是你的朋友:) –
的可能重複的[添加或更新查詢字符串參數] (http://stackoverflow.com/questions/5999118/add-or-update-query-string-parameter) – Esailija
'「http://example.com/main/index.php?code=hads1 328fas&store = food#home「.replace(/ code = [^&] * /,'')'應該 – Tamil