如何用jQueryTe计算字符?

时间:2014-01-12 22:08:04

标签: jquery

这个脚本在没有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”类,但是对我不起作用(不要返回任何内容!)。

谢谢。

0 个答案:

没有答案