我正在尝试在单击时展开 div,并在另一次单击时再次缩小它。调用此函数时,没有任何反应。
jQuery代码:
$(".panel").toggle(function()
{
$(this).click(function()
{
$(this).animate({width:'300px',height:'300px'}, 200);
});
},
function()
{
$(this).click(function()
{
$(this).animate({width:'152px',height:'152px'}, 200);
});
});