首页 > 网站 > 建站经验 > 正文

织梦编辑器修改图片

2024-04-25 20:35:40
字体:
来源:转载
供稿:网友

在用织梦做东西的时候,想在编辑器里修改图片,如何实现呢?今天总结一下分享给大家吧。

解决方法修改:

/include/FCKeditor/editor/dialog/dede_image.php
function ImageOK2()

{

var iimghtml = document.form1.imghtml.value;
// FCK.InsertHtml(iimghtml);

var newCode = FCK.CreateElement('DIV');

newCode.innerHTML = iimghtml;

window.parent.Cancel();

}

修改为

代码如下:
function ImageOK2()

{

var iimghtml = document.form1.imghtml.value;
FCK.InsertHtml(iimghtml);

//var newCode = FCK.CreateElement('DIV');

// newCode.innerHTML = iimghtml;

window.parent.Cancel();

}

大功告成,很简单是不是呢?

 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表