我正在使用tinyMCE编辑现有网站的内容。本网站的格式为:
http://localhost/start.jsp%3Fparam=value
其中%3F是问号字符的转义字符串。当TinyMCE编辑包含其中一个链接的页面时,它会将“%”符号转换为“%25”,这会破坏链接。
如何禁用tinyMCE转出百分号?
我有以下配置集:
tinyMCE.init({
mode: "specific_textareas",
editor_encoding: "raw",
editor_selector: "tinyMCE",
relative_urls : false,
convert_urls : false
}
注意:我正在使用setContent填充tinyMCE编辑器的初始值。
答案 0 :(得分:12)
应该是:
entity_encoding: "raw"
而不是:
editor_encoding: "raw"