$('select').change(function() {
//important stuff
});
在做之前,important stuff
我想通过它的 ID 来验证有问题的选择器。我想要影响的所有 ID 都以_stat
. 您将如何使用 JQuery 中的正则表达式(或其他内容)来执行此操作?
$('select').change(function() {
if ($("select[id*='_stat']")) { //<~ this aint work
//important stuff
}
});