A5下载文章资讯

分类分类

织梦编辑器修改图片

2015-05-28 15:47作者:sa

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

解决方法修改:

includeFCKeditoreditordialogdede_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();

}

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

 

展开全部

相关

说两句网友评论
    我要跟贴
    取消