セレクター内で変数を使用する方法を理解しようとしています。セレクターで ID の実際の値を使用すると、非常にうまく機能します。
$(document).on("click",'.tag', function(){
var data-id = $(this).attr('data-id');
if($('div[data-id="540"]').hasClass("tag_current")) {
$('div[data-id="540"]').removeClass("tag_current").addClass("tag");
}
$(this).toggleClass('tag tag_current');
});
多くの回答を確認し、さまざまな方法で試してみましたが、それでも解決しませんでした。