我有一些HTML代码以及脚本代码.我需要解决方案来处理一个文本框的更改事件,该文本框禁用在另一个文本字段中输入数据的行为.任何人都可以帮助我.
$(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();
});
});
更新
$(document).ready(function () {
$("#cca").on('change',function (event) {
alert('I am pretty sure the text Box changed');
$("#ccit").find('label.control input').prop('disabled',true);
event.preventDefault();
});
});
更新2
$(document).ready(function () {
$(document).on('change','#cca label.control input',true);
event.preventDefault();
});
});
原文链接:https://www.f2er.com/html/426498.html