原始地址:刪除參數的URL使用JavaScript
http://yourewebsite.php?id=10&color_id=1
顯示的網址:
http://yourewebsite.php?id=10
我得到了功能附加帕拉姆
function insertParam(key, value){
key = escape(key); value = escape(value);
var kvp = document.location.search.substr(1).split('&');
var i=kvp.length; var x; while(i--)
{
x = kvp[i].split('=');
if (x[0]==key)
{
x[1] = value;
kvp[i] = x.join('=');
break;
}
}
if(i<0) {kvp[kvp.length] = [key,value].join('=');}
//this will reload the page, it's likely better to store this until finished
document.location.search = kvp.join('&');
}
,但我需要的功能來刪除參數
就在阿里納斯 - 你沒」打開花,宣告你的函數後的括號內。 – jdepypere
我們需要更多細節:根據什麼去除?只有最後一個?基於關鍵? –
如果你只想要第一個參數(id),你可以'分開(「&")[0];' – tymeJV