楼上说的都蛮对的使用1.9应该用
$("body").delegate("#btntest","click",function () {
$(this).attr("disabled", "true");
});
live应该使用1.8.3
$("body").delegate("#btntest","click",function () {
$(this).attr("disabled", "true");
});
live应该使用1.8.3
2014-11-17