前端获取当前路径
- //获取当前窗口的Url
- //returnUrl=http://localhost:8080/shopping/buyCart.shtml?skuId=510&amount=1
- window.location.href
- //获取当前窗口的主机名 例如:http://localhost:8080
- window.location.host
- //获取当前窗口的端口 例如: 8080
- window.location.port
- //获取当前窗口的路径 例如: /shopping/buyCart.shtml
- window.location.pathname
- //获取当前文档的Url
- document.URL
- //获取参数 例如: ?skuId=510&amount=1
- window.location.search
- //跳出当前窗口,打开新窗口
- window.open(url);
- document默示的是一个文档对象,window默示的是一个窗口对象,一个窗口下可以有多个文档对象。
所以一个窗口下只有一个window.location.href,然则可能有多个document.URL、document.location.href - window.location.href和document.location.href可以被赋值,然后跳转到其它页面,document.URL只能读不克不及写
改变世界,改变自己!