我正在尝试检查当前单击的文本是否与页面上的任何其他文本具有相同的数据,因为以下文本在页面上放置了两次。单击文本后,它将添加一个类(此位正在工作),如果它也与页面上的任何其他文本具有相同的数据,那么该文本也将被赋予新类。
<span class="AJAXPagerSpan" data-num="6">6</span>
<span class="AJAXPagerSpan" data-num="12">12</span>
<span class="AJAXPagerSpan" data-num="24">24</span>
$(".AJAXPagerSpan").click(function() {
<%= this.ID %>_Pager.ChangeResultsPerPage($(this).html());
// Check if any of its siblings are part of the "highlightclass" and remove them from it
$(this).siblings().removeClass("highlightclass");
if ($(this).data() == $(this).siblings().data()) {
$(this).addClass("highlightclass");
};
// Add it to the highlightclass
$(this).addClass("highlightclass");
});