如何在jQuery中使用当前的地址URL

这个问题在这里已经有了答案:

  • 使用JavaScript获取当前网址? 18个答案

  • 这已经得到了回答,但你有没有试过.. 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

    上一篇: How to use current address url in jquery

    下一篇: Javascript code that will display full url of a page