window.location.href获取里面得参数
时间: 2023-11-02 22:00:26 浏览: 99
js获取location.href的参数实例代码
通过window.location.href获取参数的方法是通过解析URL中的查询字符串来获取。可以使用以下代码来获取参数:
```
function getParameterByName(name) {
name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
results = regex.exec(location.search);
return results === null ? "" : decodeURIComponent(results
阅读全文