zoukankan      html  css  js  c++  java
  • JS判断输入框值是否为空

    this.program = this.program.replace(/(^s*)|(s*$)/g, '');  //去除空格;
    console.log('此刻的方案:',this.program)
    if (this.program == '' || this.program == undefined || this.program == null) {
        this.$message.error('不能输入为空、空格');
    }
    
    ok已经替代了我之前的简单判空的方法:
    // if(!this.program) {
        //this.$message.error('请填写方案名称');
    // };
    

      

       let star = this.state.contentxiao.replace(/(^s*)|(s*$)/g, "");
        if (star === "" || star === undefined || star === null) {
          // 清空输入框的值
          this.setState({
            contentxiao: "",
          });
          return;
        }
    

      

    苦心人,天不负
  • 相关阅读:
    window
    pages
    百度小程序 配置 app.json 文件
    JavaScript Cookie
    jQuery ajax
    jQuery ajax
    jQuery ajax
    jQuery
    jQuery
    jQuery
  • 原文地址:https://www.cnblogs.com/taxun/p/13362802.html
Copyright © 2011-2022 走看看