这里是my fiddle
除了有时候鼠标,鼠标,点击功能(.item)之外,几乎完全正常工作并不总是有效 - 需要点击才能重新开始工作吗?为什么 - 这是我的代码 -
$(document).ready(function () {
$('.timelineTile').click(function (evt) {
evt.stopPropagation();
$('.timelineTile').not(this).removeClass('clicked').find('.pull_down_content').height(0);
$(this).toggleClass('clicked');
if(!$('.timelineTile').hasClass("clicked")){
$(this).children('.pull_down_content').height(0);
}
}); });
$(document).click(function () {
$('.timelineTile').removeClass('clicked');
$('.pull_down_content').height(0);
$('.inner').stop().css({'display': 'none'}, 300);
});
$(document).ready(function () {
$('.timelineTile').children('.item').on('mouseenter mouseleave click', function(e) { e.stopPropagation();
if ($(this).parent('.timelineTile').hasClass("clicked")) {
if (!$(this).data('clicked')) {
var Height = e.type==='mouseenter' ? '90px' : e.type==='click' ? '250px' : '0px';
$(this).siblings('.pull_down_content').stop().animate({'height': Height}, 300);
$(this).siblings('.pull_down_content').children('.inner').css({'display': 'block'}, 300);
if (e.type==='click') $(this).data('clicked', true);
}else{
if (e.type==='click') {
$(this).data('clicked', false);
$(this).siblings('.pull_down_content').stop().animate({'height': '0px'}, 300);
$(this).siblings('.pull_down_content').children('.inner').css({'display': 'none'}, 300);
}
}
}
});
});
我不确定它是否与此有关?
if(!$('.timelineTile').hasClass("clicked")){
$(this).children('.pull_down_content').height(0);
}
答案 0 :(得分:1)
也许您尝试在元素不存在时附加事件(例如,如果它们将由脚本动态添加)。
使用更现代的案例'而不是点击'等
$(wrapper).on('click', 'element', function() { ... });
Smth喜欢:
...
<div class="wrapper">
<span class="link">Click me</span>
</div>
...
$('.wrapper').on('click', '.link', function() { ... });
此变体为所有元素添加事件,即使它们是动态添加的。
答案 1 :(得分:1)
尝试替换
$('.timelineTile').not(this).removeClass('clicked').find('.pull_down_content').height(0);
用这个
$('.timelineTile').not(this).removeClass('clicked').find('.pull_down_content').height(0).end().find('.item').data('clicked',false);