如何使用JavaScript获取当前网址?

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

  • 在JavaScript中获取当前网址? 29个答案

  • 如果您目前位于http://store.ijdmtoy.com/abs.htm,那么document.URL将为http://store.ijdmtoy.com/abs.htm

    你可以试试:

    url = location.protocol + '//' + location.host + location.pathname + '?Search=' + str;


    您可以使用

          document.URL  or
          window.location.href.toString()
    

    我希望你的意思是这个

    http://jsfiddle.net/AmarnathRShenoy/q3yCA/


    使用此代码document.URL

    例如:

    alert(document.URL);
    

    你可以像狭窄一样获得路径

    var split=document.URL.split("/");
    
    链接地址: http://www.djcxy.com/p/70235.html

    上一篇: How to get current URL with JavaScript?

    下一篇: Detect current page with JavaScript