我在一个页面上有几个具有相同类的 div,它们有一个带有输入字段的表单和一个提交按钮。我用 jquery 检查每个输入字段是否为空,并且我希望在该 div 中有一个空字段时禁用该特定 div 中的提交按钮。到目前为止得到了这个:
jQuery(document).ready(function(){
$('.shipdiv input').each(function(){
if( $(this).val() == ''){
$(this).css("background-color","#ff0000");
$(this).parent('.contact-button').attr('disabled', 'disabled');
}
});
});
当有一个字段为空时,它会变成红色,然后我尝试禁用其父级中的提交按钮。但这不起作用。有人知道如何做到这一点吗?
HTML 看起来像这样:
<div class="shipdiv">
<form name="order_002" method="post" action="">
<input type="textfield" class="ship_data" name="bedrijfsnaam"/>
<input type="textfield" class="ship_data" name="straat" />
<input type="textfield" class="ship_data" name="postcode"/>
<input type="submit" name="ship-submit" id="ship-submit" class="contact-button" value="Aanmelden">
</form>
</div>
然后使用其中几个 div。