js如何利用URLSearchParams方法获取url参数(改变/删除url参数)

2025年01月28日 建站教程

基本参数

var url = "https://lmcjl.com/webs_3715.html?web=1&type=vuejs&api=json"
var getParams = new URLSearchParams(url);

for遍历

for (let p of getParams) {
  console.log(p);
}

//(2) ['https://lmcjl.com/webs_3715.html?web', '1']
//(2) ['type', 'vuejs']
//(2) ['api', 'json']

输出结果:

getParams.has("web") === true; //false
getParams.get("web") === "api"; //false
getParams.getAll("web"); //[]
getParams.get("type") === null; //false

//改变type值
getParams.append("type", "css");
getParams.toString();
//'https%3A%2F%2Flmcjl.com%2Fwebs_3715.html%3Fweb=1&type=vuejs&api=json&type=css'

//改变api值
getParams.set("api", "jsop");
getParams.toString();
//'https%3A%2F%2Flmcjl.com%2Fwebs_3715.html%3Fweb=1&type=vuejs&api=jsop'

//删除api
getParams.delete("api");
getParams.toString();

本文链接:http://so.lmcjl.com/news/22220/

展开阅读全文
相关内容