gpt4 book ai didi

javascript - 禁用类jquery的所有输入文本字段

转载 作者:太空宇宙 更新时间:2023-11-04 14:50:44 24 4
gpt4 key购买 nike

我正在使用重力形式,但重力形式正在将所有字段提交到数据库中,一些类有 style="display"none" 但仍然有数据进入数据库。这是我的 html dom 的示例

<div class="gf_left_half" style="display:none">
<input type="text" value="hh">
</div>
<div class="gf_left_half" style="display:none">
<input type="text" value="hh">
</div>
<div class="gf_left_half" style="display:none">
<input type="text" value="hh">
</div>
<div class="gf_left_half" style="display:none">
<input type="text" value="hh">
</div>

我想用 display :none 禁用所有类 gf_left_half 中的所有输入元素喜欢

<input type="text" disabled="disabled">

我正在寻找 jquery 解决方案。

已更新我在我的真实 dom 上这样应用,但它禁用了 just_test 类的所有输入,包括没有 style display none

    <li id="field_8_160" class="gfield gf_left_half just_test field_sublabel_below 
field_description_above gfield_visibility_visible">
<label class="gfield_label" for="input_8_160">
Cost per Person
</label>
<div class="ginput_container ginput_container_number">
<input name="input_160" id="input_8_160" type="text" value="2,860" class="small" aria-invalid="false" disabled="disabled">
</div>
</li>

像这样申请:

jQuery('.just_test:hidden').each(function(index,elem){
jQuery(elem).find('input').attr('disabled','disabled');
});

请告诉我我做错了什么

最佳答案

选择 .gf_left_half 并使用 :hidden 将所选类过滤为仅隐藏元素。

$(".gf_left_half:hidden input").prop("disabled", true);

$(".gf_left_half:hidden input").prop("disabled", true);
console.log($(".gf_left_half input:disabled").length);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="gf_left_half" style="display:none">
<input type="text" value="hh">
</div>
<div class="gf_left_half" style="display:none">
<input type="text" value="hh">
</div>
<div class="gf_left_half" style="display:none">
<input type="text" value="hh">
</div>
<div class="gf_left_half" style="display:none">
<input type="text" value="hh">
</div>
<div class="gf_left_half" style="display:block">
<input type="text" value="hh">
</div>

您还可以使用 .filter() 来选择具有 display: none 的元素

$(".gf_left_half input").prop("disabled", function(){
return $(this).parent().css("display") == "none";
});

$(".gf_left_half input").prop("disabled", function(){
return $(this).parent().css("display") == "none";
});
console.log($(".gf_left_half input:disabled").length);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="gf_left_half" style="display:none">
<input type="text" value="hh">
</div>
<div class="gf_left_half" style="display:none">
<input type="text" value="hh">
</div>
<div class="gf_left_half" style="display:none">
<input type="text" value="hh">
</div>
<div class="gf_left_half" style="display:none">
<input type="text" value="hh">
</div>
<div class="gf_left_half" style="display:block">
<input type="text" value="hh">
</div>

关于javascript - 禁用类jquery的所有输入文本字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52970487/

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