location.host 与 location.hostname 的区别

location.host 与 location.hostname 的区别

location.host 包含端口(端口是80的话,就不显示)
location.hostname 不包含端口

	//  http://localhost:8888/#/
	location.host
	//"localhost:8888"
	location.hostname
	//"localhost"

你可能感兴趣的:(js基础,host和hostname)