多重元素属性选择器 [name=”value”][name2=”value2″]
attributeMultiple selector
描述:匹配元素,匹配所有的指定的元素属性筛选器的元素。
加入于: 1.0
jQuery( "[attributeFilter1][attributeFilter2][attributeFilterN]" )attributeFilter1: 一个元素筛选器。
attributeFilter2: 另一个元素筛选器,进一步缩小选中区。
attributeFilterN: 根据需要添加更多的元素筛选器。
示例
找到所有带有元素属性id,而且它们的元素属性name的值以“man”结尾的<input>元素,并给它们设置值。
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>attributeMultiple demo</title> <script src="https://code.jquery.com/jquery-1.10.2.js"></script> </head> <body> <input id="man-news" name="man-news"> <input name="milkman"> <input id="letterman" name="new-letterman"> <input name="newmilk"> <script> $( "input[id][name$='man']" ).val( "only this one" ); </script> </body> </html>
演示结果