需要解决方案如何在文档准备好后使用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();
});
答案 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