限制用户输入5行或
   可滚动文本字段中的375个字符?

我尝试了这些:

([A-Z])\w+

$0</a>



var re,regs,val;
if(OTHER.rawValue!=null)
{
   val=OTHER.rawValue;
   //re=[a-zA-Z\d\s\-\,\#\.\+]+
   //re=/abc(?!$){5}/
   re=/\be(\w*)s\b/m{2,10}$;
   regs=val.match(re);
   if(!regs)
   {
     fieldname.rawValue="";
     xfa.host.messageBox("ANY THING");
     xfa.host.setFocus(fieldname)
   }
}





re=/abc(?!$){5}/

还有更多...但是我没有得到确切的一个来验证5
行或375个字符

最佳答案

试试这个:^((.+\n){0,4}.+|.{1,375})$



$(document).ready(function() {

  $("#text_string").focusout(function() {
    var res, text_string = $("#text_string").val();
    if (text_string != null) {

      res = text_string.match(/^((.+\n){0,4}.+|.{1,375})$/);
      console.log(res);
      if (!res) {
        $("#text_string").val("");
      }
    }
  });

});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<textarea name="" id="text_string" cols="30" rows="10"></textarea>

10-04 15:30
查看更多