输入框判断是否为空(包括空格回车)
2019-11-21 本文已影响0人
不会写代码的机器人
参考https://www.iteye.com/blog/niu-it-163-com-1160204
function textIsNull (val) { //判断输入框是否为空(包括空格 回车)
if (val.replace(/\s/g, '').length > 0) {
return true;
} else {
return false;
}
};