IE6在启用/禁用文本字段时闪烁

时间:2012-09-12 09:34:17

标签: javascript jquery html internet-explorer-6

我在我的代码中使用了两条无辜的jQuery行

jQuery("#textfield").attr("disabled","disabled");

jQuery("#textfield").removeAttr("disabled");

只是为了启用和禁用文本字段。每当它发生时,IE6会闪烁一下屏幕。对于旧的流氓,IE6有什么解决方法吗?

1 个答案:

答案 0 :(得分:0)

尝试过这个吗?

if($('#textfield').is(':disabled')){
    $('#textfield').prop('disabled',false);
}else{
    $('#textfield').prop('disabled',true);
}