我有代码
Using oCommand
并且字符串
失败 $(".jqte_editor").keyup( function(){
console.log($(this).text().trim());
$(this).parent().find(".validationmessagecomposed").remove();
if(!/^.{100,}$/g.test($(this).text()))
{
displayvalidationmessage($(this), "Please enter some more content");
}
});
虽然它传递了其他文字..不知道这里出了什么问题。