如何在jQuery中使用当前的地址URL
这个问题在这里已经有了答案:
这已经得到了回答,但你有没有试过.. console.log(window.location.href);
? var url = document.URL
? 这不是PHP,变量往往不以$
开头
您的脚本运行的页面的URL可以通过document.URL
访问
你不需要这个jQuery。 在JavaScript中,就像这样:
var url = document.location;
链接地址: http://www.djcxy.com/p/22543.html