用了几个文本编辑器都没这个功能比如我在文本编辑器中插入1张宽800px的图片而我在显示页的table宽只有500px这个时候图片就应该自动按比例缩小。很多论坛都用的这个功能比如
<img src="http://img.pcpop.com/upimg3/2005Bak/11/18/0000203568.jpg" border="0" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('http://img.pcpop.com/upimg3/2005Bak/11/18/0000203568.jpg');}" onmousewheel="return imgzoom(this);">就是实现这个功能