我想让它在鼠标上打开,然后再次关闭,当鼠标离开包含div不仅仅是h2,尝试了一些事情而且没有运气。
HTML:
<div class="deliverycontainer">
<h2 style=" margin-left: 2px; margin-right: 2px; color: #6588b2; background: #e6edf5; padding: 10px; cursor: pointer;">Europe: £7.50 (or free on orders over £100)</h2>
<div class="delivery_times">
<table>
<tbody>
<th>
Country
</th>
<th>
Delivery Times (approx)
</th>
<tr>
<td>Belgium</td>
<td>+ 1 day</td>
</tr>
</tbody>
</table>
</div>
</div>
CSS:
table { width: 100%; }
table th { font-size: 14px; padding: 5px; background: #e6edf5; }
table tr {width: 48%; margin: 1%;}
table td { font-size: small; text-align: center; padding: 6px; background: #e6edf5;}
</style>
Jquery的
<script type="text/javascript">
$(document).ready(function(){
dynamicFaq();
});
function dynamicFaq(){
$('.delivery_times').hide();
$('h2').bind('click', 'hover', function(){
$(this).toggleClass('open').next().slideToggle('fast');
});
}
</script>
答案 0 :(得分:2)
你的意思是:
$("h2").hover(function() {
$(".delivery_times").show();
},
function() {
$(".delivery_times").hide();
});
OR
$("h2").on({
mouseenter: function () {
$(".delivery_times").show();
},
mouseleave: function () {
$(".delivery_times").hide();
}
});
答案 1 :(得分:1)
试试这个
$("h2").on('mouseenter', function() {
alert('mouse enter');
}).on('mouseleave', function () {
alert('mouse leave');
});
答案 2 :(得分:1)
由于有两个不同的元素,你必须做这样的事情:
$(function(){
var timer;
$('.delivery_times').hide();
$('h2, .delivery_times').on({
mouseenter: function(e) {
if (e.target.tagName==='H2') $(this).addClass('open');
$('.delivery_times').slideDown('fast');
clearTimeout(timer);
},
mouseleave: function(e) {
timer = setTimeout(function() {
$('h2').removeClass('open');
$('.delivery_times').slideUp('fast');
}, 200);
}
});
});
答案 3 :(得分:0)
试试这个,如果错了,请发表评论
$("h2").on("mouseenter",function (e) {
$(".delivery_times").show();
})
$("h2").parent().on("mouseleave",function () {
$(".delivery_times").hide();
});