JS判断是正数还是负数: function check(x){ if(x>0){ return '正数'; }else if(x<0){ return '负数'; } } 未经允许不得转载:吾爱主机之家 » JS判断是正数还是负数