用CSS实现的可以强制图片自适应大小的代码。 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>CSS强制图片自适应大小</title> <style type="text/css"> img {width:expression(this.width>100?"80px":this.width+"px");} </style> </head> <body> 图片宽度大于100像素都强制显示为80像素宽,只支持IE<br><br> <div> <img src="http://www.veryhuo.com/images/logo.gif" _fcksavedurl="http://www.veryhuo.com/images/logo.gif" /> </div> </body> </html>运行代码复制代码另存代码收藏本页 文章导航 JavaScript代码让网页的图片飞起来百度联盟中的一个不错的图片切换特效