使用jQuery Validation插件验证CKEditor

时间:2012-01-05 14:26:14

标签: php jquery

如何使用jQuery验证插件验证CKeditor。

这是我的代码

<script type="text/javascript">
    $(document).ready(function(){
        $("#newpost").validate({
            debug: false,
            rules: {
                title: "required",
                cat_id: "required",
                editor1:"required"
            },
            messages: {
                title: "  Title name cannot be blank.",
                cat_id: "  Please select a category.",
                editor1: "  Post keywords cannot be blank."         
            },
            submitHandler: function(form) {
                // do other stuff for a valid form
                $.post('new_post.php', $("#newpost").serialize(), function(data) {
                 $('#msgw').html(data);
                });             
            }
        });
    });
    </script>

PHP代码:

<?php
include ('../db.php');

$title = mysql_real_escape_string($_POST['title']);
$editor1 = $_POST['editor1'];
$date= date("Y-m-d");
$cat_id = mysql_real_escape_string($_POST['cat_id']);


$qu = mysql_query("INSERT INTO blogposts(title,post,date,catid)VALUES ('".$title."','".$editor1."','".$date."','".$cat_id."')") or die (mysql_error());
?>

问题是它甚至在编辑器中发布了包含内容。我该如何解决这个问题。谢谢。

1 个答案:

答案 0 :(得分:0)

我在下面添加了以下代码:

<强> CKEDITOR.instances.pdetails.updateElement();

pdetails是textarea的名称。当您尝试提交表单并打印出textarea时:

$ pdetails = $ _POST ['pdetails'];

print $ pdetails;

在测试之前确保它有一个值。