TinyMCE:通过图片链接删除 ../
问题描述:
我的面板使用 TinyMCE 2.1 版.
I use TinyMCE Version 2.1 for my panel.
抱歉,如何从图片链接中删除此符号../"?
Sorry, how can I remove from the links of the images this symbol "../"?
<img src="../images/nameimage.jpg"...>
我想要这些链接:
<img src="https://www.site.it/images/nameimage.jpg"...>
没有这个链接:
<img src="../images/nameimage.jpg"...>
非常感谢;)
亚历山大
答
在你的 init 函数中试试这个代码
Try this code in your init function
tinymce.init({
relative_urls : false,
remove_script_host : false,
convert_urls : true,
});