var q = false; $("a:first-child").click(function() { if($("q")==false){ $("img").hide("3000",function(){ <!---------怎么写----------> })
2 回答
已采纳
陈士愚
TA贡献44条经验 获得超44个赞
var q = false; $("a:first-child").click(function() { if (q == false) { $("img").hide("3000", function() { q = true; }) } // if }); // click
q:作为标记,用于判断当a:first-child点击后,是否执行图片的隐藏行为;false : 执行隐藏 ; true:无行为。
当隐藏行为结束后,q赋值为true。
添加回答
举报
0/150
提交
取消