我也遇到这个问题,我的解决方法:
第一:"实用FCK编辑日志,插入图片时,属性里有个插入链接的地方"
第二:修改common/common.js文件,点击图片不会弹出新窗口显示图片了
大家可以到的网站看看效果
http://www.beautyleg.net
///查找网页内宽度太大的图片进行缩放以及PNG纠正
function ReImgSize(){
for (i=0;i<document.images.length;i++)
{
if (document.all){
if (document.images.width>980)'根据需要修改这个980
{
do
cument.images.width="980" '根据需要修改这个980
try{
document.images
.outerHTML='<a href="'+document.images.src+'" target="_blank" title="在新窗口打开图片">'+document.images.outerHTML+'</a>'
}catch(e){}
}
}
else{
if (document.images.width>400) {
document.images.title="在新窗口打开图片"
document.images.style.cursor="pointer"
document.images.onclick=function(e){window.open(this.src)}
}
}
}
}
[ 本帖最后由 hixiaohua 于 2008-5-9 16:56 编辑 ]