📜  如何在 windows js 中查询 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:38.402000             🧑  作者: Mango

代码示例1
function getQueryStringValue (key) {  
  return decodeURIComponent(window.location.search.replace(new RegExp("^(?:.*[&\\?]" + encodeURIComponent(key).replace(/[\.\+\*]/g, "\\$&") + "(?:\\=([^&]*))?)?.*$", "i"), "$1"));  
}  

// Would write the value of the QueryString-variable called name to the console  
console.log(getQueryStringValue("name"));