달력

52024  이전 다음

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
반응형

http://cflove.org/2010/05/simple-jquery-textarea-maxlength-function.cfm 참조 


 

<script type='text/javascript' src='http://cflove.org/js/jquery-1.4.2.min.js'></script>
<script type="text/javascript"> 

 $("document").ready(function() { 
  $('textarea[maxlength]').live('keyup change', function() { 
   var str = $(this).val() 
   var mx = parseInt($(this).attr('maxlength')) 
   if (str.length > mx) { 
    $(this).val(str.substr(0, mx));
     return false; 
    } 
  }) 
 }) 

</script>

 

 <textarea maxlength="50" style="width:400px; height:50px"></textarea> 

 

 

반응형
Posted by 친절한 웬디양~ㅎㅎ
|