dede编辑器去掉图片style样式中宽度和高度
发布时间:2019-05-11热度:0 ℃
现在许多网站都有手机端,为了让pc图片在手机端中根据css显示,那么我们需要去掉后台插入图片时候的默认宽度与高度。

其实取消步骤很简单
第一步:打开include/ arc.archives.class.php,查找代码
//设置全局环境变量
$this->Fields['typename'] = $this->TypeLink->TypeInfos['typename'];
@SetSysEnv($this->Fields['typeid'],$this->Fields['typename'],$this->Fields['id'],$this->Fields['title'],'archives');
|
第二步:在这代码下面添加
//去掉img的width和height
$this->Fields['body'] = preg_replace("/style=\"width\:(.*)\"/","",$this->Fields['body']);
|
本文地址:http://www.25923.com/dedecms/shiyong/051130.html(转载请保留)