我試圖擴大對點擊的div,並在另一次點擊收縮再次。 當這個函數被調用時,沒有任何反應。Jquery切換動畫點擊
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);
});
});
可能重複[Where fn.toggle(handler(eventObject),handler(eventObject)...)gone?](http://stackoverflow.com/questions/14301935/where-has-fn-toggle- handlereventobject-handlereventobject-gone) – j08691
什麼版本的JQuery?另外,讓一個更多的代碼在其中的jsbin – JClaspill
如果可能,你可以提供HTML代碼? – Edward