A. uEditor里插入的script,style等标签被过滤掉怎么解决
根据你的描述:
在editor_config.js里边搜索blackList,去掉里边相关的标签名,就不会被过滤掉了。
希望能帮助到你!
B. ueditor里插入的script,style等标签被过滤掉怎么解决
你好,
ueditor.config.js->filterTxtRules->取消script
希望回答对您有帮助.
C. ueditor插入html代码保存后,再次编辑文章时html代码被过滤只显示文本内容!
遇到问题多看官方文档和官方API。
官方初始化参数文档:http://fex..com/ueditor/#start-config
官方API文档:http://ueditor..com/doc/
最简单的解决方专法如下:
//如下写属法即可
varue=UE.getEditor("editor",{
initialContent:"${initParam}"
});
如果不能满足要求,比如这样的话,之前在文本中插入的图片,在修改时会展示<img>标签,可以用filterTxtRules选项解决。当然,一般没人会把图片也跟文本一起存入数据库
D. ueditor里插入的script,style等标签被过滤掉怎么解决
ueditor.config.js->filterTxtRules->取消script
E. ueditor编辑器怎么取消对 iframe标签的过滤
提交时用escape把字符串编码,输出时unescape再解码 自己网络html实体字符,进行替换 修改回php 比较推荐答1,而且编码之前可以自己把危险标签去掉,比如iframe和script 1,2用js在表单的onsubmit里完成
F. ueditor里插入的script,style等标签被过滤掉怎么解决
插入格式
种放<head></head>间定义<style>标签内部
<style type="text/css">
#div{
width:100px;
height:100pxl;
}
</style>
种元素使用(推荐)
<div style="width:100pxl;heigth:100px;" ></div>
另外种css存外部用<head>内用专<link>标签链接进属
导入等几种
G. ueditor里插入的script,style等标签被过滤掉怎么解决
提交时用escape把字符串编码,输出时unescape再解码 自己网络html实体字符,进行替换 修改php 比较推荐1,而且编码之前可以自己把危险标签去掉,比如iframe和script 1,2用js在表单的onsubmit里完成
H. ueditor1.4.3阻止过滤span标签
打开ueditor.all.js文件,搜索“allowDivTransToP”,找到以下代码:
//进入编辑器的内容处理
me.addInputRule(function (root) {
....此处代码省略
//进行默认的处理
root.traversal(function (node) {
if (node.type == 'element') {
if (!dtd.$cdata[node.tagName] && me.options.autoClearEmptyNode && dtd.$inline[node.tagName] && !dtd.$empty[node.tagName] && (!node.attrs || utils.isEmptyObject(node.attrs))) {
if (!node.firstChild()) node.parentNode.removeChild(node);
else if (node.tagName == 'span' && (!node.attrs || utils.isEmptyObject(node.attrs))) {
//取消默认过滤span标签
//node.parentNode.removeChild(node, true)
}
return;
}
....此处代码省略
}
});
//从编辑器出去的内容处理
me.addOutputRule(function (root) {
var val;
root.traversal(function (node) {
if (node.type == 'element') {
if (me.options.autoClearEmptyNode && dtd.$inline[node.tagName] && !dtd.$empty[node.tagName] && (!node.attrs || utils.isEmptyObject(node.attrs))) {
if (!node.firstChild()) node.parentNode.removeChild(node);
else if (node.tagName == 'span' && (!node.attrs || utils.isEmptyObject(node.attrs))) {
//取消默认过滤span标签
//node.parentNode.removeChild(node, true)
}
return;
}
...此处代码省略
}
})
});
说明:加粗部分为修改代码,将两端代码注释掉即可