iframe中的微小MCE编辑器

时间:2012-03-17 17:37:33

标签: iframe tinymce

我有一个html页面,其中我在iframe中起诉TinyMCE编辑器,我有一个在iframe外面的按钮。我的问题是我希望得到按钮点击编辑器的价值,但当我点击按钮我什么都没发现请帮助这里是我的代码

iframe代码:

<iframe id="EditorFrame" src="UploadTemplates.aspx" frameborder="0" style="height: 900px;
            width: 1000px" scrolling="auto"></iframe>

UploadTemplates.aspx代码:

<div>
        <p>
            <textarea id="TemplateEditor" cols="50" rows="50" runat="server">
            </textarea>
        </p>
    </div>

Jquery代码:

$(function () {
    uploader = $("#TempateFileUploader");
    tinyMCE.init({
        // General options
        mode: "textareas",
        theme: "advanced",
        plugins: "autolink,lists,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template",
        theme_advanced_toolbar_location: "top",
        theme_advanced_toolbar_align: "left",
        theme_advanced_statusbar_location: "bottom",
        theme_advanced_resizing: false,
        width: "800",
        height: "640"
        //        setup: function (ed) {
        //            ed.onClick.add(function (ed, e) {
        //                alert('Editor was clicked: ' + e.target.nodeName);
        //            });
        //        }

    });

$("#Button1").click(function () {
        alert(tinymce().get("TemplateEditor").getCOntent());
    });

});

点击Button1 hsing Jquery我发现没有任何TinyMCE,我发现tinyMCE的对象但无法获得价值请帮助我如何在按钮点击使用jquery

1 个答案:

答案 0 :(得分:0)

您的问题的解决方案可能是使用getContent()而不是getCOntent()。 使用getCOntent()你应该得到javascript错误!!