jquery 计算输入的文字个数是否符合要求 不符合不能提交表单
提示内容可以选择不同的位置,包括textarea上方或者下方,左右两侧均可,请看演示页面。
XML/HTML Code
- <div class="content">
- <div class="demo">
- <h1>Demo 1</h1>
- <div id="demo1" class="jMax">
- </div>
- </div>
- <div class="demo">
- <h1>Demo 2</h1>
- <div id="demo2" class="jMax">
- </div>
- </div>
- <div class="demo">
- <h1>Demo 3</h1>
- <div id="demo3" class="jMax">
- </div>
- </div>
- <div class="demo">
- <h1>Demo 4</h1>
- <div id="demo4" class="jMax">
- </div>
- </div>
JavaScript Code
- <script type="text/javascript">
- $(function() {
- $("#demo1").maxinput({
- position : 'topleft',
- showtext : true,
- limit : 130
- });
- $("#demo2").maxinput({
- position : 'bottomleft',
- limit : 10
- });
- $("#demo3").maxinput({
- limit : 20
- });
- $("#demo4").maxinput({
- limit : 5,
- showtext : true,
- message : 'left'
- });
- });
- </script>
原文地址:http://www.freejs.net/article_biaodan_327.html