English 中文(简体)
j Query.animate()在互联网探索者中失败
原标题:jQuery.animate() fails in Internet Explorer

如果在其他地方得到答复,那么我就认为我没有为我工作的“固定”。

基本上,我正在使用j Query.animate()在大约150px的圆顶上移动一片。 它从顶端开始:-150,并用过度流入隐藏。 一旦 containing改,它就应当mate倒到顶点:0。 所有这一切都发生在 Chrome和FF,但在IEC中,我没有任何东西。 我尝试使用IEE开发商工具路障,并发现任何错误。 看来,出于某种原因,最崇高的属性仅仅从来就从未改变过,但我不理解为什么,或者我需要改变来加以纠正。 非常感谢任何援助。

该法典:

页: 1

最后,最后只是通过使用消化炉的“八分”特性而不是“顶”来解决这一问题。 这,加上婚礼和边界归属,我基本上能够发挥同样的作用。 但并非完全确定“站”为什么会放弃工作,而是要养活。

问题回答

Hiya working demo http://jsfiddle.net/EbRgW/“rel=“nofollow” http://jsfiddle.net/EbRgW/

Good read: http://api.jquery.com/jQuery.noConflict/

www.un.org/spanish/ga 页: 1

This will help,

www.un.org/spanish/ecosoc Jquery Code

$(document).ready(function() { //http://api.jquery.com/jQuery.noConflict/
    var $jq = jQuery.noConflict();
    $jq( .accordion li ).hover(function() {
        $jq(this).children( .accordion-textbox ).stop().animate({
            top:  0px 
        }, 600);
    }, function() {
        $jq(this).children( .accordion-textbox ).stop().animate({
            top:  -150px 
        }, 200);
    });
});




相关问题
Image rendered with wrong colors in IE8

I have a gradient image as a PNG (no transparency) in a web-page. By taking a screenshot of Chrome showing the page and cropping the image from the page, I see the exact same colors are drawn as the ...

Determine Mobile Internet Explorer version

I need to determine the version of Mobile Internet Explorer on a Windows Mobile 6.1 device. So that I can report the same user-agent string as is being used by Mobile Internet Explorer. The user-...

CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

Internet Explorer only part loading JavaScript/CSS

I m having trouble with my local development environment where IE (6 through to 8) is only part loading JavaScript/CSS files. It throws random errors at random places in jquery.min.js every time I ...

IE doesn t run Javascript when you click back button

I ve built a shop with tons of JS running. One of the pieces of the cart, is a zip code field which is required to calculate shipping cost. This works fine going through the cart. Now clicking ...

热门标签