属性选择器(通常用在input)

Posted 梦想起航我起床

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了属性选择器(通常用在input)相关的知识,希望对你有一定的参考价值。

  1.  input[type="text"]{}

                   选中属性值为text的input

       2.  input[type|="text"]{}

                   选中以text-开始的input的type属性值

                   <input type="text-sadads">

        3. input[type^="text"]{}

                   选中标签中type属性以text属性值开始

                   注:该声明表示属性值有多个并每一个属性值之间用空格隔开

                    例如:    <input type="text sadads">

       4.  input[type*="text"]{}

                   选中input标签中type属性包含text属性值,属性值之间可不隔开

                     例如:   <input type="sadtextsadads">

       5.  input[type~="text"]{}

                   选中input标签中type属性包含text属性值

                   注:该声明表示属性值有多个并每一个属性值之间用空格隔开

                    例如:<input type="sadds text sadads">

       6.  input[type$="text"]{}

                   选中标签中type属性以text属性值结束

                   例如:<input type="ssd text">

以上是关于属性选择器(通常用在input)的主要内容,如果未能解决你的问题,请参考以下文章

选择器

jquery选择器都有哪些

jQuery常用的基本选择器

选择器

jQuery选择器之属性筛选选择器

jquery 选择器