change
Internet Explorer でイベントへのバインドに問題があります。
次のコードがあります。
$("#tbFechaValides").attr("disabled", "disabled");
$("#tbCodigo").change(function() {
window.alert("ddd");
if ($(this).val() != " ") {
$("#tbFechaValides").removeAttr('disabled');
} else {
$("#tbFechaValides").attr("disabled", "disabled");
}
});
Firefox では動作しますが、IE でテストしても何も起こりません。私は何を間違っていますか?