第二热情
2016-09-04 03:50
$("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");
}
}
)
});
这个为什么不可以 求大神教一下 感激不尽
jQuery基础(四)—动画篇
85049 学习 · 262 问题
相似问题