在网上找了一圈比较IP大小的方法都不太好用,索性自己写了一个
function ipSize(sip,eip){ //sip小于或者等于eip 返回为true,否则为false
sip = sip.split(".");
eip = eip.split(".");
try {
sip.forEach(function(item,index){
if (item > eip[index]) {
throw false;
}else{
throw true;
}
});
} catch (e) {
return e;
}
}