标签: javascript jquery
如果那是最好的代码?
if(window.location.origin.split(":")[1] > 4) { return false; }else { return true; }
答案 0 :(得分:1)
您想要location.port(location对象的一部分)。
location.port
location
return !!location.port; // true if there is a port, false otherwise