美文网首页
【小结】jQuery表单相关选择器

【小结】jQuery表单相关选择器

作者: 音无级鹦鹉螺号szhiku | 来源:发表于2019-06-17 12:16 被阅读0次

表单相关 


:input

可以选择<input>,<textarea>,<select>和<button>

:text

匹配所有的单行文本框,和input[type = 'text']一样

其他input的type

:password   :radio    :checkbox   :image   :reset   :button   :file

  • 这样就可以相对精确的选中input下的元素了

表单状态相关


:enable和:disable

:enable匹配所有可用元素;:disable匹配所有不可用元素

:checked

匹配所有选中的被选中元素(复选框、单选框等,select中的option)

:selected

匹配所有选中的option元素

  • 虽然checked也可以选中select,但是使用selected能增强代码可读性

相关文章

  • 【小结】jQuery表单相关选择器

    表单相关 :input 可以选择 , , 和 :text 匹配所有的单行文本框,和input[type = 'te...

  • jQuery入门(2)

    jQuery选择器 属性筛选选择器 子元素筛选选择器 表单元素选择器 表单对象属性筛选选择器 特殊选择器this ...

  • jQuery相关复习

    jQuery相关 jQuery选择器 参考手册 基本选择器 层次选择器 过滤选择器 可见性过滤选择器 属性过滤选择...

  • 2020-04-07jQuery

    基本选择器 层叠选择器 属性选择器 位置选择器 表单选择器 操作 操作元素的CSS样式 设置元素内容 jQuery...

  • jQuery选择器

    jQuery选择器可以分为基本选择器、层次选择器、过滤选择器和表单选择器。 1、基本选择器 2、层次选择器 3、过...

  • JQuery选择器

    根据所获取页面中元素的不同,可以将jQuery选择器分为4大类:基本选择器、层次选择器、过滤选择器、表单选择器。 ...

  • jquery选择器书目录

    jquery选择器-基本选择器 jquery选择器-层级选择器 jquery选择器-基本过滤选择器 jquery选...

  • JQUERY一

    jQuery 元素选择器 jQuery 属性选择器 jQuery CSS 选择器 jQuery 事件 jQuery...

  • jQuser有选择器

    jQuery基本选择器 jQuery过滤选择器 jQuery层级选择器 jQuery筛选选择器(方法)

  • 选择器

    jQuery 元素选择器 jQuery 属性选择器 jQuery CSS 选择器

网友评论

      本文标题:【小结】jQuery表单相关选择器

      本文链接:https://www.haomeiwen.com/subject/dtfafctx.html