【问题标题】:Adding jquery events to tinymce textareas将 jquery 事件添加到 tinymce 文本区域
【发布时间】:2011-10-15 15:41:34
【问题描述】:

我从 tinymce 得到这个,我在调用 jquery 之前调用了它。

<script type="text/javascript" src="http://localhost/javascript/tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
<script type="text/javascript">
    tinyMCE.init({
        // General options
        mode : "textareas",
        theme : "advanced",
        plugins : "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 options
        theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect",
        theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
        theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
        theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak",
        theme_advanced_toolbar_location : "top",
        theme_advanced_toolbar_align : "left",
        theme_advanced_statusbar_location : "bottom",
        theme_advanced_resizing : true,

        // Example content CSS (should be your site CSS)
        //content_css : "css/example.css",

        // Drop lists for link/image/media/template dialogs
        template_external_list_url : "js/template_list.js",
        external_link_list_url : "js/link_list.js",
        external_image_list_url : "js/image_list.js",
        media_external_list_url : "js/media_list.js",

        // Replace values for the template plugin
        template_replace_values : {
            username : "Some User",
            staffid : "991234"
        }
    });
</script>

然后是我的文本区域

<textarea id="edit_textarea"> </textarea>
 <input type="button"  id="manual_text" value="Add" onClick="text_manual()"> 

我正在尝试使用 jquery 获取该文本区域中输入内容的值,因此当单击按钮时,我获取该值并将其附加到其他地方..

javascript

function text_manual() {
    var textarea = $('#edit_textarea');
    var text_value = textarea.val();
    $('#image_conv').append(text_value);
    $('#image_conv').html(text_value).css('font-size', textarea.css('font-size'));
    $('#image_conv').html(text_value).css('color', textarea.css('color'));
}

另外,如果它会有所帮助,该代码在不添加 tinymce 的代码时可以工作。 因此,似乎tinymce 不允许在分配的文本区域上使用外部脚本。 有谁知道我该如何解决这个问题?

【问题讨论】:

    标签: tinymce


    【解决方案1】:

    经过长时间的研究,我发现这段简单的代码有效..

    tinyMCE.get('edit_textarea').getContent();
    

    【讨论】:

      猜你喜欢
      • 2010-12-07
      • 1970-01-01
      • 1970-01-01
      • 2023-03-15
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2011-10-05
      • 1970-01-01
      相关资源
      最近更新 更多