让我们放下在网页编辑器中允许<script>
内容的问题;我完全了解他们。
我想要的是在文本内容中允许<style>
和<script>
个元素,问题在于,每当我这样做时,TinyMCE会将它们更改为:
<style><!-- th{width:80px} --></style>
并且脚本内容更改为:
<script>// <![CDATA[
$.address.unbind();
// ]]></script>
在我的TinyMCE init配置中,我有:
valid_elements : "*[*]",
extended_valid_elements : "*[*],script[charset|defer|language|src|type],style",
custom_elements: "*[*],script[charset|defer|language|src|type],style",
valid_children : "+body[style],+body[script]",
verify_html : false,
media_strict: false
但我似乎无法找到一种方法来阻止TinyMCE 禁用 <style>
和<script>
元素。
答案 0 :(得分:7)
如果可以避免,我建议避免对第三方库进行任何直接定制。相反,我在初始化期间向编辑器序列化程序添加了一个自定义节点过滤器,方法是将以下内容添加到传递给tinymce构造调用的配置对象中:
init_instance_callback : function(editor) {
// jw: this code is heavily borrowed from tinymce.jquery.js:12231 but modified so that it will
// just remove the escaping and not add it back.
editor.serializer.addNodeFilter('script,style', function(nodes, name) {
var i = nodes.length, node, value, type;
function trim(value) {
/*jshint maxlen:255 */
/*eslint max-len:0 */
return value.replace(/(<!--\[CDATA\[|\]\]-->)/g, '\n')
.replace(/^[\r\n]*|[\r\n]*$/g, '')
.replace(/^\s*((<!--)?(\s*\/\/)?\s*<!\[CDATA\[|(<!--\s*)?\/\*\s*<!\[CDATA\[\s*\*\/|(\/\/)?\s*<!--|\/\*\s*<!--\s*\*\/)\s*[\r\n]*/gi, '')
.replace(/\s*(\/\*\s*\]\]>\s*\*\/(-->)?|\s*\/\/\s*\]\]>(-->)?|\/\/\s*(-->)?|\]\]>|\/\*\s*-->\s*\*\/|\s*-->\s*)\s*$/g, '');
}
while (i--) {
node = nodes[i];
value = node.firstChild ? node.firstChild.value : '';
if (value.length > 0) {
node.firstChild.value = trim(value);
}
}
});
}
希望这会帮助其他人陷入同一条船。
答案 1 :(得分:2)
您可以尝试更改 tinymce.min.js
,f.addNodeFilter("script,style",function(e,t){function n(e){return e.replace(/(<!--\[CDATA\[|\]\]-->)/g,"\n").replace(/^[\r\n]*|[\r\n]*$/g,"").replace(/^\s*((<!--)?(\s*\/\/)?\s*<!\[CDATA\[|(<!--\s*)?\/\*\s*<!\[CDATA\[\s*\*\/|(\/\/)?\s*<!--|\/\*\s*<!--\s*\*\/)\s*[\r\n]*/gi,"").replace(/\s*(\/\*\s*\]\]>\s*\*\/(-->)?|\s*\/\/\s*\]\]>(-->)?|\/\/\s*(-->)?|\]\]>|\/\*\s*-->\s*\*\/|\s*-->\s*)\s*$/g,"")}for(var r=e.length,i,o,a;r--;)i=e[r],o=i.firstChild?i.firstChild.value:"","script"===t?(a=i.attr("type"),a&&i.attr("type","mce-no/type"==a?null:a.replace(/^mce\-/,"")),o.length>0&&(i.firstChild.value="// <![CDATA[\n"+n(o)+"\n// ]]>")):o.length>0&&(i.firstChild.value="<!--\n"+n(o)+"\n-->")}),f.addNodeFilter("#comment",function(e){for(var t=e.length,n;t--;)n=e[t],0===n.value.indexOf("[CDATA[")?(n.name="#cdata",n.type=4,n.value=n.value.replace(/^\[CDATA\[|\]\]$/g,"")):0===n.value.indexOf("mce:protected ")&&(n.name="#text",n.type=3,n.raw=!0,n.value=unescape(n.value).substr(14))})
请从文件中找到并删除上面的代码行。
答案 2 :(得分:2)
当您存储tinymce内容时,只需从输出中删除这些标记,如下所示:
$tinyOutput = str_replace(array("// <![CDATA[", "// ]]>"), array("", ""), $_POST['tinyOutput']);
..然后保存到db ..
答案 3 :(得分:0)
对我而言,它删除了以下用于禁用脚本标记格式化的代码:
,o.length>0&&(i.firstChild.value="// <![CDATA[\n"+n(o)+"\n// ]]>")
对于样式标记的格式化,您应该删除:
&&(i.firstChild.value="<!--\n"+n(o)+"\n-->")
答案 4 :(得分:0)
您可以尝试使用<
代替<
作为样式和脚本标签。这样,tinymce将无法识别样式和脚本标签。
例如:
对于样式:
<style>th{width:80px}</style>
对于脚本:
<script>
$.address.unbind();
</script>