我如何与可能$(this)
的值进行比较。data-id
1-2rju-aodg
我的意思是我需要指定$(this)
有标签data-id
并且我需要验证它是否等于X
$(this).data('id')/*==123123akfsna*/.siblings('p').html(no_featured_news).removeClass('existing').addClass('description');
我如何与可能$(this)
的值进行比较。data-id
1-2rju-aodg
我的意思是我需要指定$(this)
有标签data-id
并且我需要验证它是否等于X
$(this).data('id')/*==123123akfsna*/.siblings('p').html(no_featured_news).removeClass('existing').addClass('description');
如果您不想使用if
:
$(this).filter('[data-id="1-2rju-aodg"]').siblings('p')........
$(this + '[data-id=123123akfsna]')
.siblings('p')
.html(no_featured_news)
.removeClass('existing')
.addClass('description');
if ($(this).attr('data-id') == '1-2rju-aodg') {
$(this).siblings('p')//...
}