我有以下代码
HTML:
<div id="test">
<p id="hello">HELLO</p>
<p id="no-hello">NO HELLO</p>
</div>
jQuery:
$('#test').click(function() {
alert($('#hello').is(':hover'));
if ($('#hello').is(':hover')) {
alert('hello');
}
});
我一直在使用 jQuery 1.6,它运行良好。但是现在由于某种原因,使用了 1.9,这已经停止工作。我尝试在网上寻找解决方案,但没有得到任何提示。
谢谢大家。