我使用jQuery來隱藏DIV以下DIV點擊如何使這是一個完全可點擊DIV
.up_link {
position: absolute;
width: 830px;
height: 500px;
z-index: 8;
text-align: center;
cursor: pointer;
border: 3px solid #000;
}
這在Firefox,但不是在IE工作正常時。我可以點擊Firefox中的整個DIV,但在IE中只能看到邊框。
$(function() {
$(".down_link").click(function() {
$(".gallery_block2").stop(true, true).hide().animate({ marginTop: 0 }, 400).fadeTo(500,1).show();
});
$(".up_link").click(function() {
$(".gallery_block2").stop(true, true).fadeTo(500,0).show().animate({ marginTop: -550 }, 400);
});
});
HTML
<div class="gallery_block2">
<div class="gallery_thumbs">
<div class="gallery_close_container up_link"></div>
<div class="load_space"></div>
</div>
</div>
任何幫助表示讚賞。
你可以發佈你的JavaScript代碼嗎? – 2012-02-09 22:36:55
我們需要看到你的JS和你的標記。通常很簡單,使用'$('。gallery_close_container')。click(...)'就足夠了。 – prodigitalson 2012-02-09 22:39:01
用JQuery更新。 – Andy 2012-02-09 22:39:28