host 属性
作用:设置或返回主机名和当前 URL 的端口号。
语法:location.host
console.log(location.host)
console.log(location.hostname)
hostname 属性
作用:一个可读可写的字符串,可设置或返回当前 URL 的主机名。
语法:location.hostname
区别:
location.host 包含端口(端口是80的话,就不显示)
location.hostname 不包含端口
host 属性
作用:设置或返回主机名和当前 URL 的端口号。
语法:location.host
console.log(location.host)
console.log(location.hostname)
hostname 属性
作用:一个可读可写的字符串,可设置或返回当前 URL 的主机名。
语法:location.hostname
区别:
location.host 包含端口(端口是80的话,就不显示)
location.hostname 不包含端口