如上为163editor在页面中的调用方法,这里使用的是asp.net
想实现从数据库中列出表情列表,然后点表情图片,图片插入到编辑器中。
首先在页面中引入<script src="../163editor/script/editfunc.js" type="text/javascript"></script>
以便调用插入图片的函数,然后在编辑器边上列出了图片
如上代码中的图片添加了οnclick="javascript:format('InsertImage', this.src);"单击事件,然后在editorfunc.js中266行添加
function format(type, para){
var f = window.frames["HtmlEditor"];
/* code added by haibin on 2009-06-19 1:10 */
if(typeof(f)=='undefined')
{//兼容ie和ff
f = window.frames["ifrm"].window.frames["HtmlEditor"];
}
/* end code */
这样的代码就可以了,经调试以上代码支持ie及ff。