請看我的小提琴 當你滾動到頁面底部div出現和頂部面板隱藏。但是當我在底部的X按鈕它不關閉。無法顯示/隱藏在jquery
什麼,我想,當我點擊clode按鈕父DIV應該隱藏和頂格應該再次顯示
這是我的小提琴 http://jsfiddle.net/cancerian73/VHuFQ/2/
$(window).scroll(function() {
if ($(window).scrollTop() >= ($(document).height() - $(window).height())) {
$('.bottom-teaser').animate({
"right": 10,
"opacity": "1"
}, "slow");
$('.top-icons').hide();
}
});
$('#x-button').click(function() {
$('.bottom-teaser').parent().hide();
$('.top-icons').show();
return false;
});
我想你命名你的 '身份證' 是錯誤的。看看這個:http://jsfiddle.net/VHuFQ/4/ – Roman