我有一套的div例如:jQuery的屬性包含選擇
<div class="wrapper">
<div class="uct_attr" data-tags="one two three four">stuff</div>
<div class="uct_attr" data-tags="three four">stuff</div>
<div class="uct_attr" data-tags="one three five">stuff</div>
<div class="uct_attr" data-tags="one two six">stuff</div>
<div class="uct_attr" data-tags="four five six">stuff</div>
</div?
如何執行和行動上符合我上不的那些查詢,另一種的人?記住我的願望是匹配的屬性數據標籤
例如,一家之言:
// if match 'one'
$('.wrapper .uct_attr[data-tags="one"]').doMatch();
// the rest that didn't match 'one'
$('.wrapper .uct_attr[data-tags!="one"]').doNotMatch();
的問題,我認爲是存在這樣的屬性multipul標籤。
對此的任何幫助將是偉大的。
Ç
你是如此接近:http://api.jquery.com/attribute-contains-選擇器/ –
這對''=' – Cybercampbell
是如何工作的請參閱我的答案以瞭解如何取消 –