我知道这个问题被问了 mnay 次,但我仍然无法解决它。如果您有任何想法,请告诉我。问题仅在 IE 中,单击按钮时根本不会滑动。
这是我的代码
JS:
$(document).ready(function($){
$('#hide_cookie').click(function(e) {
event.preventDefault()
$('.cookie').slideUp('slow', function() {
// Animation complete.
});
});
});
CSS:
.cookie {
background: #47515c;
text-align: center;
color: #dadcde;
max-height: 115px !important;
zoom: 1;
}
.cookie span {
font-size: 12px;
font-weight: bold;
text-transform: uppercase;
}
.cookie p {
font-size: 11px;
line-height: 14px;
}
.cookie .button {
height: 37px;
}
.cookie .button a {
color: #fff;
}
HTML:
<div class="cookie">
<div class="container_12">
<span>Title</span>
<p>content here</p>
</div>
<div class="button">
<a href="#" id="hide_cookie" class="read-more">Hide me</a>
</div>
</div>