gpt4 book ai didi

javascript - 如何使用 jQuery 从 URL 获取端口号?

转载 作者:行者123 更新时间:2023-11-28 11:23:38 26 4
gpt4 key购买 nike

这是网址:

http:// localhost:8888/index.html. 

如何使用 jQuery 从此 URL 获取端口号?

最佳答案

它可以在 location 中找到。对象:

location.port

请注意,当 URL 中不存在端口时,location.port 将返回空字符串。

如果即使使用隐式默认端口也需要获取端口,请尝试:

var port = location.port || (location.protocol === 'https:' ? '443' : '80');

这对于通过 httphttps 协议(protocol)提供的页面来说应该足够了。

关于javascript - 如何使用 jQuery 从 URL 获取端口号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23739177/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com