var url = window.location.href;
结果:
https://test.com/index.html?Event=90000002
如何使用Javascript获取90000002
并将其放入变量?
答案 0 :(得分:0)
您可以使用.split()方法
var data=url.split("=")[1]
应该返回你所得到的' ='
答案 1 :(得分:0)
虽然这不是优化的方式,但你仍然可以这样做
使用location
对象及其搜索属性。
location.search将返回?Event=90000002
。然后使用substring
获取值
var a = location.search;
console.log(a.substring(7,a.length))