🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
### 返回值:Array<Element(s)>:password ### *V1.0*概述 匹配所有密码框 ### 示例 #### 描述: 查找所有密码框 ##### HTML 代码: ~~~ <form> <input type="text" /> <input type="checkbox" /> <input type="radio" /> <input type="image" /> <input type="file" /> <input type="submit" /> <input type="reset" /> <input type="password" /> <input type="button" /> <select><option/></select> <textarea></textarea> <button></button> </form> ~~~ ##### jQuery 代码: ~~~ $(":password") ~~~ ##### 结果: ~~~ [ <input type="password" /> ] ~~~