input:not([type]), /* type attribute not present in markup */
input[type=""], /* type attribute present, but empty */
input[type=text] /* type is explicitly defined as 'text' */
< p >[标题]
所有具有title属性的元素都被选中
< p > (title =香蕉)
.所有title属性值为banana的元素
< p >[标题~ =香蕉)
title属性值中包含'banana'的所有元素
< p >[标题| =香蕉)
title属性值以'banana'开头的所有元素
< p >[标题^ =香蕉)
title属性值以'banana'开头的所有元素
< p >(标题=美元香蕉)
title属性值以'banana'结尾的所有元素
< p >(标题* =香蕉)
title属性值包含子字符串'banana'的所有元素