三、表单域选择器
1. :input選擇器
$(":input")
用于選擇所有input,textarea,select,button元素。
2. :text選擇器
<input type="text" />?
$(":text")
3. :password選擇器
<input type="text" />
$(":password")
4. :radio選擇器(單選按鈕)
<input type="radio" />
$(":radio")
5. :checkbox選擇器(復(fù)選框)
<input type="checkbox" />
$(":checkbox")
6. :file選擇器(文件域)
<input type="file" />
$(":file")
7. :image選擇器(圖像域)
<input type="image" />
$(":image")
8. :hidden選擇器(不可見元素)
display:none;或<input type="hidden" />
$(":hidden")
9.:button選擇器
<button>...</button>或<input type="button" />
$(":button")
10. :submit選擇器
<button>...</button>或<input type="submit" />
$(":submit")
11. :reset選擇器(重置按鈕)
<input type="reset" />
$(":reset")
?
轉(zhuǎn)載于:https://www.cnblogs.com/beautyZ/archive/2012/05/20/2510662.html
總結(jié)
- 上一篇: 矩阵转置基本性质
- 下一篇: iOS7.1.1越狱后闪退修复方法