ueditor里插入的script,style等标签被过滤掉怎么解决
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ueditor里插入的script,style等标签被过滤掉怎么解决相关的知识,希望对你有一定的参考价值。
参考技术A 插入格式种放<head></head>间定义<style>标签内部
<style type="text/css">
#div
width:100px;
height:100pxl;
</style>
种元素使用(推荐)
<div style="width:100pxl;heigth:100px;" ></div>
另外种css存外部用<head>内用<link>标签链接进
导入等几种本回答被提问者和网友采纳
解决百度富文本编辑器 UEditor 插入视频后没有路径的问题
在 Update ueditor.config.js 文件中,xssFilter导致插入视频异常,编辑器在切换源码的过程中过滤掉img的_url属性(用来存储视频url)_src/plugins/video.js里处理的是_url,而不是_src。
修改ueditor.config.js:
img: [‘src‘, ‘alt‘, ‘title‘, ‘width‘, ‘height‘, ‘id‘, ‘_src‘, ‘_url‘, ‘loadingclass‘, ‘class‘, ‘data-latex‘],
以及
video: [‘autoplay‘, ‘controls‘, ‘loop‘, ‘preload‘, ‘src‘, ‘height‘, ‘width‘, ‘class‘, ‘style‘],
source: [‘src‘, ‘type‘],
embed: [‘type‘, ‘class‘, ‘pluginspage‘, ‘src‘, ‘width‘, ‘height‘, ‘align‘, ‘style‘, ‘wmode‘, ‘play‘,
‘loop‘, ‘menu‘, ‘allowscriptaccess‘, ‘allowfullscreen‘]
必要时,还要给 img 加上 style 的白名单。
解决方案来自互联网,由上地网站建设公司提供。
以上是关于ueditor里插入的script,style等标签被过滤掉怎么解决的主要内容,如果未能解决你的问题,请参考以下文章