JS获取url参数

function getParams(val)
{
       const str= window.location.search.substring(1);
       const arr= str.split("&");
       for (var i=0;i

url 实例:
http://www.pisces.com?id=1&image=pisces.jpg
调用 getParams("id") 返回 1。
调用 getParams("image") 返回 "pisces.jpg"。

你可能感兴趣的:(JS获取url参数)