美文网首页
判断输入框不能为空的正则表达

判断输入框不能为空的正则表达

作者: 小娜同学 | 来源:发表于2021-02-09 17:13 被阅读0次

    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