1. 
$("#btnSey").click(function() {
        var con = $.trim($("#FCK1").val());
        if (con == "") {
            alert("评论不能为空,请输入要评论的内容!");
            $("#FCK1").focus();
            return false;
        }
        else
            return true;
    });
2.没有生成前的FCK页面代码
 <FCKeditorV2:FCKeditor ID="FCK1" Width="100%" Height="200px" runat="server"></FCKeditorV2:FCKeditor>3.生成THML后的页面代码(下面的代码是我在FCK编辑器框里输入“应该可以”后解析出来的html代码,为什么下面的:value=""呢!)
<div><input type="hidden" id="FCK1" name="FCK1" value="" /><input type="hidden" id="FCK1___Config" value="HtmlEncodeOutput=true" /><iframe id="FCK1___Frame" src="/FckEditor/editor/fckeditor.html?InstanceName=FCK1&amp;Toolbar=Default" width="100%" height="200px" frameborder="no" scrolling="no"></iframe></div>希望大家知道的能告之小弟下!最好有代码解释说明的解决方案!

解决方案 »

  1.   

    这个value是动态的,你在iframe中输入值,它会实时地传给FCK1
      

  2.   

    FCK提供接口的!// 获取编辑器中HTML内容
    function getEditorHTMLContents(EditorName) {
        var oEditor = FCKeditorAPI.GetInstance(EditorName);
        return(oEditor.GetXHTML(true));
    }// 获取编辑器中文字内容
    function getEditorTextContents(EditorName) {
        var oEditor = FCKeditorAPI.GetInstance(EditorName);
        return(oEditor.EditorDocument.body.innerText);
    }
    参考:http://www.cnblogs.com/yssoft/archive/2009/04/29/1446342.html
      

  3.   

    http://blog.csdn.net/paolei/archive/2009/03/25/4023450.aspx去看看这个帖子吧 也许有用  帮你顶了 对了知道我是那个吗 嘿嘿 
      

  4.   

    和普通的标签一样,去value值就可以了
      

  5.   

    FCK会把值放到一个隐藏的文本域中,你去隐藏的文本中的值即可
      

  6.   

    var con = $.trim($("#FCK1_config").val());