在jquery中启用和禁用textfield

时间:2013-12-18 11:30:49

标签: javascript jquery

需要解决方案如何在文档准备好后使用jquery启用和禁用文本字段。 我尝试过的示例代码如下,但是没有显示任何输出或警报。

jQuery(document).ready(function(){
     /*jQuery('#tan label.control input').change();*/
});
jQuery("#cca label.control input").on('change', function (event) {
  alert('I am pretty sure the text box changed');
  event.preventDefault();
});

1 个答案:

答案 0 :(得分:0)

试试这个:

jQuery(document).ready(function(){
     jQuery("#cca label.control input").on('change', function (e) {
    alert('I am pretty sure the text box changed');
    e.preventDefault();
  });
});

如果这不起作用,请在键入jQuery("#cca label.control input").length

时回复您的控制台返回的内容