0

我想将 CK-editor 与 jquery validate 集成,但它不起作用。

$("#commentForm").validate({
        rules: {
            txtckeditor: "required",
        },
        messages: {
            txtckeditor: "This field is required.",
          onkeyup: false,
        onblur: true
});

如何解决这个问题呢 ?

4

1 回答 1

2

在调用 validate 之前,请尝试以下操作:

CKEDITOR.instances.txtckeditor.updateElement(); // then your validate call
$("#commentForm").validate({
        rules: {
                 ....
于 2012-07-13T04:04:59.253 回答