jQuery :image

admin發表於2017-02-14
此選擇器能夠匹配型別為image的<input>元素。

特別說明:千萬不要弄成<img>標籤。

jQuery1.0版本新增。

語法結構:

[JavaScript] 純文字檢視 複製程式碼
jQuery( ":image" )

程式碼例項:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title> 
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript"> 
$(document).ready(function(){ 
  $("#bt").click(function(){ 
    $(":image").width("100");
  })
})
</script> 
</head> 
<body> 
<input type="image" src="mytest/div+css/border.jpg" />
<input type="button" value="檢視效果" id="bt"/>
</body> 
</html>

點選按鈕可以設定圖片的尺寸。

相關文章