如何使用JS或JQuery检测URL是否具有端口ID?

时间:2016-04-07 03:28:29

标签: javascript jquery

如果那是最好的代码?

if(window.location.origin.split(":")[1] > 4) {
    return false;
}else {
    return true;
}

1 个答案:

答案 0 :(得分:1)

您想要location.portlocation对象的一部分)。

return !!location.port; // true if there is a port, false otherwise