$("button").click(function(){
$("p").hide("slow",function(){
alert("段落现在被隐藏了");
});
});
$("button").click(function(){
$("p").hide(1000);
alert("段落现在被隐藏了");
});
jQuery Callback 方法
最新推荐文章于 2025-05-14 20:21:16 发布
$("button").click(function(){
$("p").hide("slow",function(){
alert("段落现在被隐藏了");
});
});
$("button").click(function(){
$("p").hide(1000);
alert("段落现在被隐藏了");
});