一个人,你错过
#了你的
$("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', 'label.control input', 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', function (event) { alert('I am pretty sure the text box changed'); $("#ccit").find('label.control input').prop('disabled',true); event.preventDefault(); });});
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)