let regu= "^[ ]+$";
let re= new RegExp(regu);
//为空或纯空格为 true 有值为false
if (re.test(comment) || comment=== '' ){ //comment 是被验证的值
Taro.showToast({title:'回复内容不能为空!',mask:true,duration:1500,icon:'none'});
return;
}
let regu= "^[ ]+$";
let re= new RegExp(regu);
//为空或纯空格为 true 有值为false
if (re.test(comment) || comment=== '' ){ //comment 是被验证的值
Taro.showToast({title:'回复内容不能为空!',mask:true,duration:1500,icon:'none'});
return;
}
本文标题:判断输入框不能为空的正则表达
本文链接:https://www.haomeiwen.com/subject/mhdcxltx.html
网友评论