我正在尝试为jwysiwyg文本编辑器设置最大字符长度。
我尝试使用.keyup函数。但它不起作用。我正在使用
dwr.util.getValue("jwysiwyg") //Its a dwr utility to get the value of an element.
获取文本编辑器的内容。 jwysiwyg是文本区域的id。它的工作。
但如果我尝试使用相同的ID,
$("#jwysiwyg").keyup(this.countChars);
它不起作用。
有没有其他方法可以获取文本编辑器的.keyup事件?
答案 0 :(得分:1)
试
$("#jwysiwyg").keyup(function(){
return dwr.util.getValue("jwysiwyg").length; // or try ur code here this.countChars(if length doesnt work)
});