2

html タグの上に doctype を追加すると、Jquery コードが IE8 で動作しないようです。

これらのコードを ie8 で動作するように再構築する方法があるかもしれません。

$(document).ready(function(){
            //Caption Sliding (Partially Hidden to Visible)
            $('.boxgrid.caption').hover(function(){
                $(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
            }, function() {
                $(".cover", this).stop().animate({top:'161px'},{queue:false,duration:160});
            });
        });


The website can be seen here:

http://www.keencloudmedia.com/sample/test.html

前もって感謝します!

4

1 に答える 1

1

これを試して

$(document).ready(function(){
        $('.boxgrid.caption').mouseenter(function(){
            $(".cover", this).stop().animate({'top':'0px'},160);
        });
        $('.boxgrid.caption').mouseleave(function() {
            $(".cover", this).stop().animate({'top':'161px'},160);
        });
    });

このメタタグを使用できます(jqueryで動作します)

    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
于 2012-06-26T08:43:13.317 に答える