我如何使用 $(this) 在条件中重用特定的选择器

How do I use $(this) to reuse a particular selector in the condition

如何使用 $(this) 重用 $('select').data('field') 的特定实例(仅当它等于条件中的特定值时)。

if ($('select').data('field') === "DriverDiscovery.AddStatus") {
    alert( $(this) );
}

谢谢

这个怎么样:

$('select').each(function(){//for each select element
     if($(this).data('field') == "DriverDiscovery.AddStatus"){//if the condition is met
          alert($(this).text());//print its text
     }
})