我想製作一個盒子,但是當點擊一個列表項時,它會下降,然後單擊時返回。我之前做了很多次,但由於某種原因,jquery添加了display:none;切換添加顯示無?
$('li.item-162').toggle(function(){
$('.login').animate({
top: '27px'
}, 1000);
},function() {
$('.login').animate({
top: '-212px'
}, 1000);
});
$(".li.item-162").show();
而且在螢火我的代碼顯示 你可以看到它住在這裏.. http://rdhealthandsafety.co.uk/index.php
任何想法,爲什麼發生這種情況,我想它我週二上午藍調:(
其實這就是['.toggle ()'](http://api.jquery.com/toggle/)會:「*顯示或隱藏匹配的元素。*」。 – insertusernamehere 2013-03-12 11:44:48
你究竟想要什麼? – supersaiyan 2013-03-12 11:46:29
我認爲切換是用來作爲關閉? – Brent 2013-03-12 12:15:36