select 输入类型 next with not class selector

select input type next with not class selector

我需要 select 所有没有特定 class 的输入类型 texts

这是我尝试过但没有成功的方法:

$('input.text:not(.fld-required-' + val + ')').each(function() {
    $(this).val('');
});

更新
这是我的一个输入文本,未被 selected:

<input placeholder="my_input" class="fld-required fld-required-1" name="my_input" type="text" required="">

您没有为您的输入元素分配 text class。

您可以使用 attribute selector:

$('input[type="text"]:not(.fld-required-' + val + ')').each(function() {
    $(this).val('');
});