这个脚本在没有jQueryTE(http://jqueryte.com/)的情况下工作正常。
<script>
$(document).ready(function(){
$("#myTextarea").keyup(function(){
el = $(this);
if(el.val().length >= 300){
el.val( el.val().substr(0, 300) );
} else {
$("#count").text(300-el.val().length);
}
});
});
如何使用jQueryTE计算字符数? 我曾尝试使用“jqte_editor”类,但是对我不起作用(不要返回任何内容!)。
谢谢。