首页 > 代码库 > 验证字符串空“” 的表达式

验证字符串空“” 的表达式

if ($(this).val() == "" || $(this).val() == null) {
              filterString = "";
} else {
              filterString = "^" + replaceRegexStr(filterList[0]) + "$";
              for (var j = 1; j < filterList.length; j++) {
                     filterString = filterString + "|" + "^" + replaceRegexStr(filterList[j]) + "$";
              }
   }

 

  ^$    这个即是“”的正则