TinyMCE 禁用转义
我正在使用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编辑器的初始值。
I'm using tinyMCE to edit content from an existing website. This website has links in the format:
http://localhost/start.jsp%3Fparam=value
where the %3F is the escaped string for the question mark character. When TinyMCE edits a page containing one of these links, it converts the "%" sign into "%25" which breaks the link.
How can I disable tinyMCE's escaping of percent signs?
I have the following configuration set:
tinyMCE.init({
mode: "specific_textareas",
editor_encoding: "raw",
editor_selector: "tinyMCE",
relative_urls : false,
convert_urls : false
}
Note: I am using setContent to populate the initial value of the tinyMCE editor.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
应该是:
而不是:
请参阅 http://tinymce.moxiecode.com/wiki.php/Configuration< /a>
Should be:
instead of:
See http://tinymce.moxiecode.com/wiki.php/Configuration