如何使用JQuery使文本框启用和禁用更改

如何使用JQuery使文本框启用和禁用更改,第1张

如何使用JQuery使文本框启用禁用更改

一个人,你错过

#
了你的
$("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();    });});


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5084954.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-16
下一篇 2022-11-16

发表评论

登录后才能评论

评论列表(0条)

保存