IE8 上的 jQuery .hover() 问题
我在 IE8 中的 .hover() 有一个小问题,它在 FF、Chrome 和 Safari 中工作没有问题。 IE 不会给出任何错误或任何错误。这是我到目前为止所拥有的:
- 一个使用 .hover() 的菜单(这适用于 IE8)
- 一个使用 .hover() 从右侧打开的表单,该表单使用 jQuery Form、jQuery Validate 和 qTip(这适用于 IE8)除了 IE8 之外的所有内容)
- 加载了多个 javascript 库:jQuery 1.5.1、jQuery UI、jQuery Form、jQuery Validate、qTip 2、Colorbox
所以这里出现了有问题的代码:
$(document).ready(function () {
//menu works great
$(".menu").hover(
function () {
if(!$(this).hasClass('animated')) {
$(this).dequeue().stop().animate({top: 137}, 400,'easeInOutCirc');
}
},
function () {
$(this).addClass('animated').animate({top: 110}, 400,'easeInOutCirc', function() {$(this).removeClass('animated').dequeue();});
}
);
//this works in everything but IE8
$("#contact-bar").hover(
function () {
if(!$(this).hasClass('animated')) {
$(this).dequeue().stop().animate({right: -10}, 400,'easeInOutCirc', function() {$('.qtip').qtip('show');});
}
},
function () {
$(this).addClass('animated').animate({right: -301}, 400,'easeInOutCirc', function() {$(this).removeClass('animated').dequeue(); $('.qtip').qtip('hide');});
}
);
});
CSS(我尝试过更改背景甚至放置图像):
#contact-bar {
position:absolute;
top:282px;
width:352px;
height:360px;
right: -301px;
}
非常感谢任何帮助!
I have a little problem with a .hover() in IE8 which works in FF, Chrome and Safari with no problem. IE doesn't give any error or whatsoever. Here is what I have so far:
- A menu that works with .hover() (This works in IE8)
- A form that opens from the right with .hover() and the form uses jQuery Form, jQuery Validate and qTip (This works in everything but IE8)
- Multiple javascript libraries loaded: jQuery 1.5.1, jQuery UI, jQuery Form, jQuery Validate, qTip 2, Colorbox
So here comes the problematic code:
$(document).ready(function () {
//menu works great
$(".menu").hover(
function () {
if(!$(this).hasClass('animated')) {
$(this).dequeue().stop().animate({top: 137}, 400,'easeInOutCirc');
}
},
function () {
$(this).addClass('animated').animate({top: 110}, 400,'easeInOutCirc', function() {$(this).removeClass('animated').dequeue();});
}
);
//this works in everything but IE8
$("#contact-bar").hover(
function () {
if(!$(this).hasClass('animated')) {
$(this).dequeue().stop().animate({right: -10}, 400,'easeInOutCirc', function() {$('.qtip').qtip('show');});
}
},
function () {
$(this).addClass('animated').animate({right: -301}, 400,'easeInOutCirc', function() {$(this).removeClass('animated').dequeue(); $('.qtip').qtip('hide');});
}
);
});
The CSS (I tried changing the background or even putting an image):
#contact-bar {
position:absolute;
top:282px;
width:352px;
height:360px;
right: -301px;
}
Any help is extremely appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先我发现 html 可能有问题。请参阅屏幕截图。为什么在 IE 上,
#Table_02
位于quisiera-contratar-a-redvel_
中?查看验证器结果:错误第 74 行第 37 列:省略了“form”的结束标记,但指定了 OMITTAG NO。检查时告知。First I see there could be problem with html. See screenshot. Why on IE
#Table_02
is inquisiera-contratar-a-redvel_
? See validator results: Error Line 74, Column 37: end tag for "form" omitted, but OMITTAG NO was specified. Tell when you check it.