jQuery :disabled

admin發表於2017-02-14

此選擇器能夠選取所有禁用的表單元素。

jQuery1.0版本新增。

語法結構:

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

程式碼例項:

[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 () {
    $("input:disabled").css("background-color","red"); 
  }); 
}); 
</script> 
</head> 
<body> 
<ul> 
  <li> 
    不可用文字框:<input type="text" disabled="disabled" /> 
    可用的文字框:<input type="text"/> 
  </li> 
</ul> 
<input type="button" value="檢視效果" id="bt" />
</body> 
</html>

點選按鈕可以將不可用按鈕背景色設定為紅色。

相關文章