jQuery1.8.0帮助手册选择器:input
上一篇::only-child 下一篇::text

:input

返回值:Array:input

V1.0概述

匹配所有 input, textarea, select 和 button 元素

示例

描述:

查找所有的input元素,下面这些元素都会被匹配到。

HTML 代码:

    
    
    
    
    
    
    
    
    
    
    
    
    
jQuery 代码:
$(":input")
结果:
[
    ,
    ,
    ,
    ,
    ,
    ,
    ,
    ,
    ,
    ,
    ,
    ,
    ,
 ]
上一篇::only-child 下一篇::text