gpt4 book ai didi

javascript - 如何使用 JQuery 使文本框在更改时启用和禁用

转载 作者:太空狗 更新时间:2023-10-29 15:35:31 25 4
gpt4 key购买 nike

我有一段 html 代码和脚本代码。我需要解决方案来处理一个文本框的更改事件,该文本框禁用在另一个文本字段中输入数据的行为。任何人都可以帮助我。

<div id="cca" class="leaf">
<label class="control input text" title="">
<span class="wrap">cca</span>
<input class="" type="text" value="[Null]"/>
<span class="warning"></span>
</label>
</div>
<div id="ccit" class="leaf">
<label class="control input text" title="">
<span class="wrap">ccit</span>
<input class="" type="text" value="[Null]"/>
<span class="warning"></span>
</label>
</div>

$(document).ready(function () {        
alert("hello");
$("#cca").on('change', 'label.control input', function (event) {
alert('I am pretty sure the text box changed');
$("ccit").prop('disabled',true);
event.preventDefault();
});
});

最佳答案

对于一个你在你的 $("ccit") 上丢失了 #

$(document).ready(function () {        
alert("hello");
$("#cca").change(function(){
alert('I am pretty sure the text box changed');
$("#ccit").prop('disabled',true);
event.preventDefault();
});
});

http://jsfiddle.net/qS4RE/

更新

$(document).ready(function () {               
$("#cca").on('change', 'label.control input', function (event) {
alert('I am pretty sure the text box changed');
$("#ccit").find('label.control input').prop('disabled',true);
event.preventDefault();
});
});

http://jsfiddle.net/qS4RE/1/

更新 2

$(document).ready(function () {               
$(document).on('change', '#cca label.control input', function (event) {
alert('I am pretty sure the text box changed');
$("#ccit").find('label.control input').prop('disabled',true);
event.preventDefault();
});
});

关于javascript - 如何使用 JQuery 使文本框在更改时启用和禁用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20665144/

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