jQuery的length 属性可以获取包含 jQuery 对象中元素的数目,所以获取input的个数可用如下代码实现
$('input').length; // 所有input的数量,包括文本框、单选按钮、复选框、隐藏域等
$('input:text').length; // 文本框的数量
示例代码如下
创建Html元素
点击按钮获取文本框数量:
设置css样式
div.box{width:300px;padding:20px;margin:20px;border:4px dashed #ccc;}
div.box span{color:#999;font-style:italic;}
div.content{width:250px;margin:10px 0;padding:20px;border:2px solid #ff6666;}
input[type='button']{height:30px;margin:10px;padding:5px 10px;}
input[type='text']{width:200px;height:35px;padding:5px 10px;margin:5px 0;border:1px solid #ff9966;}
编写jquery代码
$(function(){
$(":button").click(function() {
alert($("input:text").length);
})
})
观察效果
$("input").length
$("input[type='text']").size()