javascript验证无法预测

时间:2015-11-12 16:56:25

标签: javascript jquery html regex

我有代码

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");
        }

    });

虽然它传递了其他文字..不知道这里出了什么问题。

0 个答案:

没有答案