使用TinyMCE的绝对URL

时间:2010-12-06 18:18:52

标签: tinymce

每次我将图像添加到tinyMCE时,它会将图像URL转换为愚蠢的东西(删除主机名并添加../或其他任何需要的内容),因此我将无法使用tinymce创建的图像网站的水平!

这可以以某种方式修复吗? relative_urls: "false",无法正常工作

由于

2 个答案:

答案 0 :(得分:9)

在javascript初始化中使用它:

relative_urls : false,
remove_script_host : false,
convert_urls : true,

Get TinyMCE to use full image url instead of relative one

答案 1 :(得分:0)

在初始化tinymce之前,我设置了以下变量

var system_url = "http://myserver.com/workspace/codebase/html/";

这样我以后就可以使用system_url来处理图片和其他类似的文件

content_css: system_url+'js/tiny_mce/css/green.css',