假设我有一个 HTML 文档,其中包含:
<form id = "my_form">
<input type = "text" />
<input type = "text" />
<input type = "text" />
<button type = "button" onclick = "removeGoodInputs()">Do the job</button>
</form>
我想摆脱满足某些条件的输入值(在我的 JS 中给出)。我尝试创建我的removeGoodInputs()
函数(如下所示),但这会删除表单中的所有输入。我该如何解决这个问题?
function removeGoodInputs() {
$("#my_form input").each(function() {
if(this.attr("value") == 10)
$(this).remove();
});
}