jquery命令汇总,方便使用jquery的朋友

2020-05-19 07:41:49易采站长站整理


:checkbox              $(“:checkbox”)                     所有 type=”checkbox” 的 <input> 元素


:submit                  $(“:submit”)                        所有 type=”submit” 的 <input> 元素


:reset                     $(“:reset”)                           所有 type=”reset” 的 <input> 元素


:button                  $(“:button”)                         所有 type=”button” 的 <input> 元素


:image                   $(“:image”)                         所有 type=”image” 的 <input> 元素


:file                      $(“:file”)                             所有 type=”file” 的 <input> 元素


:enabled                $(“:enabled”)                       所有激活的 input 元素


:disabled                $(“:disabled”)                      所有禁用的 input 元素


:selected                $(“:selected”)                       所有被选取的 input 元素