jq的css()方法执行后如果执行回调函数
$($("#Container").find(".dayItem")[0]).animate({height:"0px"},300,function(){$(this)....
$($("#Container").find(".dayItem")[0]).animate({
height: "0px"
}, 300, function() {
$(this).remove();
CalendarHandler.isRunning = false;
});
其实是想改写这个animate,换成css(),方法。
谢谢,有知道的贴上代码不胜感激 展开
height: "0px"
}, 300, function() {
$(this).remove();
CalendarHandler.isRunning = false;
});
其实是想改写这个animate,换成css(),方法。
谢谢,有知道的贴上代码不胜感激 展开
1个回答
展开全部
你好,jq中css方法没有回调函数,代码如果用css()可以分开写,
var d0 =$($("#Container").find(".dayItem")[0]);
d0.css("height","0px"); d0.remove(); CalendarHandler.isRunning = false;
还可以写成如下格式
$(this).css({
height: function(index, value) {
return parseFloat(value) * 1.2;
}
});
具体使用方法可以参考http://www.css88.com/jqapi-1.9/css/
希望可以帮助到你
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |