JS window.location对象下各属性示例
1JS window.location对象下各属性示例
1. href属性:获取当前页面的 URL。
例子:
```
console.log(window.location.href); // https://www.example.com
```

2. host属性:获取当前页面的主机名和端口号。
例子:
```
console.log(window.location.host); // www.example.com
```

3. hostname属性:获取当前页面的主机名。
例子:
```
console.log(window.location.hostname); // www.example.com
```

4. pathname属性:获取当前页面的路径。
例子:
```
console.log(window.location.pathname); // /blog
```

5. protocol属性:获取当前页面的协议。
例子:
```
console.log(window.location.protocol); // https:
```

6. search属性:获取当前页面的查询字符串。
例子:
```
console.log(window.location.search); // ?category=js&page=1
```

7. origin属性:获取当前页面的协议、主机名和端口号。
例子:
```
console.log(window.location.origin); // https://www.example.com
```
本页由《梦行文档》生成

 

name完成
30