织梦CMS FCK编辑器上传后得到的图片HTML信息中含有图片的新窗口打开链接,比如:
<a href="/uploads/100209/2_234937_1.png" target="_blank"><img height="128" alt="" width="128" border="0" src="/uploads/100209/2_234937_1.png" /></a><br />图片1<br /> |
打开include\FCKeditor\editor\dialog文件夹下的image.php文件,把116行替换为下面的:
$imgHtml .= "<img src='$imgsrcValue' width='$imgwidthValue' border='0' height='$imgheightValue' alt='' /><p>图片{$i}</p>\r\n"; |
上传后的信息:
<img src='/uploads/100210/2_000020_1.jpg' width='600' border='0' height='500' alt='' /><p>图片1</p> |