gpt4 book ai didi

jquery - 循环遍历具有特定类的 div 中的所有输入

转载 作者:行者123 更新时间:2023-12-01 07:19:10 26 4
gpt4 key购买 nike

<script language="javascript" type="text/javascript" src="jquery-1.6.js"></script>

<script>

$('.disabledForm').each(function(i, div) {
alert('in here');
$(div).find('input').each(function(j, element){
$(element).attr('disabled','disabled');
});
});
</script>

<div id="divDisabled" class="disabledForm">
<label>Disabled Input 1&nbsp;<input type="text" id="disabledInput1" name="disabledInput1" /></label>
<br />
<label>Disabled Input 2&nbsp;<input type="text" id="disabledInput2" name="disabledInput2" /></label>
</div>

永远不会看到“在这里”消息,并且我的输入永远不会被禁用,所以我认为我做错了什么。谁能告诉我我哪里做得不对?

最佳答案

您必须将代码包装在 $(function(){ ... }) block 中,以便让它看到整个 DOM。

<script>
$(function(){

//your js code here

});
</script>

关于jquery - 循环遍历具有特定类的 div 中的所有输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15745467/

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