button/btntest
$(function () {
$("button").bind("click mouseout", function () {
$(this).attr("disabled", "true");
})
});
为什么button不行换成btntest就可以了?
$(function () {
$("button").bind("click mouseout", function () {
$(this).attr("disabled", "true");
})
});
为什么button不行换成btntest就可以了?
2016-02-24
举报