【发布时间】:2013-12-15 10:31:36
【问题描述】:
http://jsfiddle.net/nofear87/uBEDA/
$('#produceMenu').mouseover(function(){
$('#produceMenu').show();
}).mouseout(function(){
$('#produceMenu').hide();
});
$('#menuProduce').mouseover(function() {
var pos = $('#productionMenu').position();
$('#produceMenu').css({
"top" : pos.top + "px",
"left": (pos.left + 111) + "px"
});
$('#produceMenu').show();
}).mouseout(function() {
$('#produceMenu').hide();
});
为什么选择选项会消失,我该如何解决。在 Firefox 中它可以工作......但在 chrome 中它消失了。 在ie中的孔样本不起作用...不知道为什么,在ie中鼠标悬停有什么问题吗?
非常感谢!
【问题讨论】:
-
当我使用 jquery 1.8.3 而不是 1.10.1 时,我修复了 ie 鼠标悬停问题。但这是什么原因?
标签: jquery internet-explorer google-chrome firefox select