coldfusion tinymce图片上传

时间:2014-12-19 17:38:44

标签: coldfusion tinymce

我在网站上有一个基本的tinymce编辑器,我希望能够从我的本地驱动器添加任何图像并上传到服务器。我正在使用coldfusion,下面是我目前的代码。这只能选择插入图像URL而不是从本地驱动器添加图像。我以前没有使用插件,所以任何人都可以请给我这里可以使用的选项。感谢

  <script type="text/javascript" src="/include/tiny_mce/tiny_mce.js"></script>
  <script type="text/javascript">
        tinyMCE.init({ 
            // General options
            selector : "textarea#testone",
            width : 500,
            height: 200,
            theme : "advanced",
            skin : "o2k7",
            // 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_toolbar_location : "top",
            theme_advanced_toolbar_align : "left",
            theme_advanced_path : false,
            theme_advanced_resizing : true
        });

</script>

1 个答案:

答案 0 :(得分:1)

已阅读TinyMCE的文档,他们告诉我们无法在常见问题解答中上传任何图片。请查看问题Here。我们有一个名为插入/编辑图像的选项,用于在文本内容中插入图像。