在实际的应用中文本编辑器出现一个问题,当加上链接后,整个编辑器报BUG
解决方案,主要应用了替换,replace
代码如下:
//文章内容
if (information_Content == "") {
layer.alert('文章内容不能为空', {
skin: 'layui-layer-molv' //样式类名
, closeBtn: 0
});
return;
}
if (information_Content != "") {
information_Content = editor.$txt.html();
var reg = / /g;
var information_Content = information_Content.replace(reg, "");
var regs = /&/g;
var information_Content = information_Content.replace(regs, "卍");
}
如果是空格,用空代替,如果是出现&的参数用你卍代替。
页面输出的时候,在转下
information_Content = dr["information_Content"].ToString().Replace("卍", "&");
网友评论