1

当在服务器端禁用时,如何在 IE 8 中使用 jQuery 启用单选按钮列表。该代码在 Chrome 中运行良好,但无法在 IE 8 中启用。

$(this).removeAttr("disabled"); //code works in Chrome, but not in IE 
4

1 回答 1

1

更好地使用这个:

$(this).attr('disabled', false);
于 2013-10-27T09:00:39.327 回答