jQuery-Selectors(选择器)的使用(八、表单篇)

系列文章导航:

jQuery-Selectors(选择器)的使用(一、基本篇)

jQuery-Selectors(选择器)的使用(二、层次篇)

jQuery-Selectors(选择器)的使用(三、简单篇)

jQuery-Selectors(选择器)的使用(四--五、内容篇&可见性篇)

jQuery-Selectors(选择器)的使用(六、属性篇)

jQuery-Selectors(选择器)的使用(七、子元素篇)

jQuery-Selectors(选择器)的使用(八、表单篇)

jQuery-Selectors(选择器)的使用(九、表单对象属性篇)


1. :input用法

定   义:匹配所有 input, textarea, select 和 button 元素
返回值:Array
实   例:将ID为"div_a1"的DIV中所有的input元素的背景色改为红色(radio,checkbox元素的状态改为选中)
代   码: $("#div_a1 :input").css("background-color","red");$("#div_a1 :input").attr("checked",true); //点击按钮一将执行这句代码DIV ID="div_a1"
span ID="span_1"


it知识库jQuery-Selectors(选择器)的使用(八、表单篇),转载需保留来源!

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。