阅读ckeditor内容

时间:2013-01-28 10:14:59

标签: javascript jquery asp.net ckeditor

我在asp.net页面中使用CKEditor。为此,我已将ckeditor.dll添加到我的项目中。 我在.aspx页面中使用此引用。 我的问题是我无法在javascipt中读取ckeditor内容。 任何人都可以告诉我如何实现这个目标。 这是我的代码

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="CKEditorVamshi._Default" %>
<%@ Register Assembly="CKEditor.NET" Namespace="CKEditor.NET" TagPrefix="CKEditor" %>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script>
    <script type="text/javascript" language="javascript">
        function validate() {
            var text = $('#cke_<%= CKEditorGettingStarted.ClientID %> iframe').contents().find('body').html();
           alert(text);
        }
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <CKEditor:CKEditorControl AutoPostBack="True" ID="CKEditorGettingStarted" runat="server"
    Height="300px" BasePath="~/CKEditor" MaxLength="10" Width="100%" CausesValidation="true">
 </CKEditor:CKEditorControl>
 <br />
 <input type="button" id="btnPreview" value="Preview" onclick="validate();" />
    </form>
</body>
</html>

先谢谢你

1 个答案:

答案 0 :(得分:1)

尝试

CKEDITOR.instances.Your_Editor_Client_ID.getData();