JQuery之 表单选择器
关键字:
- :input 只要是form的子标签 就会被选中
- input 直选中标签为input的元素
09-表单选择器.html
$(function() {
$("#btn1").click(function() {
alert($(":input").length);
})
});
123
12
Option
Button