jQuery :input

admin發表於2017-02-14

此選擇器匹配所有的input元素。

jQuery1.0版本新增。

語法結構:

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

程式碼例項:

[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 () {
    $("textarea").val($(":input").length);
  })
})
</script> 
</head> 
<body> 
<form>
  <input type="button" value="Input Button"/>
  <input type="checkbox" />
  <input type="file" />
  <input type="hidden" />
  <input type="image" />
  <input type="password" />
  <input type="radio" />
  <input type="reset" />
  <textarea></textarea>
  <input type="button" value="檢視效果" id="bt" />
</form>
</body> 
</html>

點選最後一個按鈕可以將匹配的input元素數目寫入多行文字域。

相關文章