Multiple Attribute Selector [name=value][name2=value2]
attributeMultiple selector
version added: 1.0jQuery('[attributeFilter1][attributeFilter2][attributeFilterN]')
- attributeFilter1
- 一個(gè)屬性過(guò)濾器.
- attributeFilter2
- 另一個(gè)屬性過(guò)濾器, 減少選擇甚至更多
- attributeFilterN
- 根據(jù)需要有更多的屬性過(guò)濾器
描述: 選擇匹配所有指定的屬性篩選器的元素
Example:
Finds all inputs that have an id attribute and whose name attribute ends with man and sets the value.
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.min.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>