如何拼接 window.location.protocol + window.location.host+/news/
时间: 2024-04-04 17:33:43 浏览: 107
window.clearInterval与window.setInterval的用法.
可以使用如下代码实现拼接:
```
var url = window.location.protocol + "//" + window.location.host + "/news/";
```
其中,`window.location.protocol` 返回页面使用的协议(如 "http:" 或 "https:"),`window.location.host` 返回主机名和端口号(如 "www.example.com:80"),`/news/` 是需要拼接的路径。拼接后的完整 URL 存储在变量 `url` 中。
阅读全文