我正在尝试隐藏滑块左面板然后单击时显示而不是显示时显示然后单击隐藏时有人可以帮忙吗
这是我的jQuery
$(document).ready(function() {
$('#slideleft .button').click(function() {
var $lefty = $(this).next();
$lefty.animate({
left: parseInt($lefty.css('left'),10) == 0 ?
-$lefty.outerWidth() :
0
});
});
});
这就是我使用的
http://www.learningjquery.com/2009/02/slide-elements-in-different-directions
干杯