我有2个按钮。我想要的只是在后期成功启用这些按钮以保持数据正确。问题是,在一个句子中,jquery attr(“禁用”,“禁用”)无法与IE10一起使用,但Chrome和Firefox根本没问题。
但 attr(“name”)正常运行。
任何评论都表示赞赏。这是代码。
j$("div.document-list").find("input").live("click",function(){
var move = j$(this).attr("name");
//other code
j$("div.document-list").find("input").attr("disabled","disabled");
j$.ajax({
//other code
type : "post",
success: function(data){
if(data == "1") {
//other code
j$("div.document-list").find("input").attr("disabled","");
}
},
});
}