如何使用JavaScript获取当前网址?
这个问题在这里已经有了答案:
如果您目前位于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