gpt4 book ai didi

jquery - 在父表单中选择 .class 元素

转载 作者:行者123 更新时间:2023-12-01 04:49:44 27 4
gpt4 key购买 nike

我有两个 FORM,其中都有 .ERROR 类。我如何在此表单中选择 .ERROR。

大致如下:

<script>

$(document).on('click','.SUBMIT',function()
{
if($(this).closest('form').find('.ERROR').is(':visible'))
{
alert('ITS VISIBLE!!!!');
}
}

</script>


<form method="post" enctype="multipart/form-data">
<div class="ERROR" style="display:none;"></div>
<input type="button" class="SUBMIT">
</form>

最佳答案

捕获表单提交按钮上的点击事件通常不太可靠,因为还有其他事件可以提交表单。相反,捕获提交事件,例如

+function($) {
$(document).on('submit', 'form', function(e) {

var form = $(this),
error = form.find('.ERROR');
if (error.is(':visible')) {
alert("IT'S VISIBLE");
return false;
}
return true;
});
}(jQuery);

关于jquery - 在父表单中选择 .class 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22369126/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com