2

我在我的 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>

先感谢您

4

1 回答 1

1

尝试

CKEDITOR.instances.Your_Editor_Client_ID.getData();

于 2013-01-28T11:08:37.390 回答