防止圖片擠破頁面

<img>標籤中加入
onload=”javascript:if(this.width>200)this.width=200″

當圖片載入時設定若寬度大於200像素,則設定圖片寬度為200像素

html · [高亮] · [原始]

  1. <img src="xxx.jpg" onload="javascript:if(this.width>200)this.width=200">
<img src="xxx.jpg" onload="javascript:if(this.width>200)this.width=200">

Leave a Comment