jQuery :button

admin發表於2018-02-02

此選擇器能夠選取所有按鈕。

jQuery1.0版本新增。

語法結構:

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

程式碼例項:

[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 () {
    $(":button").hide(); 
  }); 
}); 
</script> 
</head> 
<body> 
<ul> 
  <li><input type="button" value="螞蟻部落" /></li> 
  <li><input type="text"/></li> 
</ul> 
<input type="button" value="檢視效果" id="bt" />
</body> 
</html>

點選底部的按鈕會隱藏所有的按鈕元素。

相關文章