javascript的location对象提问
发布网友
发布时间:2024-09-17 06:26
我来回答
共3个回答
热心网友
时间:2024-09-29 05:13
http协议的默认端口,比如你访问 http://www.baidu.com:80 与 访问http://www.baidu.com 是一样的
location.hash 可以用来获取或设置页面的标签值
热心网友
时间:2024-09-29 05:17
最普遍的用法 : window.location.href="xxx.action?a=0&b=1"
设置或获取对象指定的文件名或路径。
<script>
alert(window.location.pathname)
</script>
设置或获取整个 URL 为字符串。
<script>
alert(window.location.href);
</script>
设置或获取与 URL 关联的端口号码。
<script>
alert(window.location.port)
</script>
设置或获取 URL 的协议部分。
<script>
alert(window.location.protocol)
</script>
设置或获取 href 属性中在井号“#”后面的分段。
<script>
alert(window.location.hash)
</script>
设置或获取 location 或 URL 的 hostname 和 port 号码。
<script>
alert(window.location.host)
</script>
设置或获取 href 属性中跟在问号后面的部分。
<script>
alert(window.location.search)
</script>
href 属性中没有“#”所以不用设置,端口不设就是默认80,设了就是你设的值。端口80就是说跟外界交互数据的时候是从80这个端口来进行的,举个列子吧,一栋楼有东南西北等很多入口,你要进这栋楼你可以从默认的东入口进出,你也可以从其他方向入口进出。OK?
还不懂的话你参考这个:http://baike.baidu.com/view/1075.htm?fr=ala0_1_1
热心网友
时间:2024-09-29 05:12
计算机有很多端口,65536个,前100大都定义了。80是http协议的默认端口,
tomcat服务器的默认端口是8080。
这个端口就是用来接收数据包的!
热心网友
时间:2024-09-29 05:14
http协议的默认端口,比如你访问 http://www.baidu.com:80 与 访问http://www.baidu.com 是一样的
location.hash 可以用来获取或设置页面的标签值
热心网友
时间:2024-09-29 05:19
最普遍的用法 : window.location.href="xxx.action?a=0&b=1"
设置或获取对象指定的文件名或路径。
<script>
alert(window.location.pathname)
</script>
设置或获取整个 URL 为字符串。
<script>
alert(window.location.href);
</script>
设置或获取与 URL 关联的端口号码。
<script>
alert(window.location.port)
</script>
设置或获取 URL 的协议部分。
<script>
alert(window.location.protocol)
</script>
设置或获取 href 属性中在井号“#”后面的分段。
<script>
alert(window.location.hash)
</script>
设置或获取 location 或 URL 的 hostname 和 port 号码。
<script>
alert(window.location.host)
</script>
设置或获取 href 属性中跟在问号后面的部分。
<script>
alert(window.location.search)
</script>
href 属性中没有“#”所以不用设置,端口不设就是默认80,设了就是你设的值。端口80就是说跟外界交互数据的时候是从80这个端口来进行的,举个列子吧,一栋楼有东南西北等很多入口,你要进这栋楼你可以从默认的东入口进出,你也可以从其他方向入口进出。OK?
还不懂的话你参考这个:http://baike.baidu.com/view/1075.htm?fr=ala0_1_1
热心网友
时间:2024-09-29 05:19
计算机有很多端口,65536个,前100大都定义了。80是http协议的默认端口,
tomcat服务器的默认端口是8080。
这个端口就是用来接收数据包的!