$("button:first").click(function() {
$("#a1").hide({duration: 3000,
complete: fuction() {$("#a1").css(display:"block") })
});
不是不可以,是你的代码写错了,要么少了),要么又少了}。
$("button:first").click(function() {
$("#a1").hide(
{
duration: 3000,
complete: function() {
$("#a1").css("display","block");
}
}
)
});
这个为什么不可以 求大神教一下 感激不尽