美文网首页
【小结】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表单相关选择器

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