<script type="text/javascript"> $(function(){ $("#input1").keyup(function(){ $(‘span‘).empty(); var txtlength=$(this).val().length; var maxlength=20; var aa=maxlength-txtlength; aa>0==true? $(‘span‘).append("你还可以输"+aa+"汉字"):$(‘span‘).append("你不能再输入了!"); }); }); </script>
<body> <input type="text" value="" id="input1" maxlength="20" /><span style="color:red"></span> </body>
小弟新手...请各位大神不吝赐教....