如何根据数据属性中的值选择一个元素??? 例子
<button data-present = "one">Present data</button>
正在尝试$(selector:data('something') == something)
但失败了
答案 0 :(得分:3)
使用attribute equals选择器
$('button[data-present=one]')
答案 1 :(得分:0)
您可以使用.attr()
if($('button').attr('data-present') == 'one'){
console.log(true);
} else{
console.log(false);
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button data-present = "one">Present data</button>