-1

该脚本适用于 chrome 和 firefox,但不适用于 Internet Explorer。有人可以帮忙吗?

<script type="text/javascript" language="javascript">
$(document).scroll(function(e) {
    if($(this).scrollTop() > 170 && $(window).scrollTop() + $(window).height() != $(document).height()) {
        $("#testimonial_list").css({"position" : "fixed", "top" : "10px"});
    } else {
        $("#testimonial_list").css({"position" : "absolute", "top" : "210px"});
    }
});
</script>
4

1 回答 1

1

小点可能会有所帮助,但不要在脚本声明中包含 language="javascript" 。

如果您使用的是 html5,则不再需要它以及 type 属性,但如果您使用的是 xhtml trans 或 strict ,请使用更基本的版本。

<script type="text/javascript">

</script>

IE也有顶部问题,我过去在制作facebook页面时使用过这个,你需要定位顶部框架,而不仅仅是html所在的iframe。这个页面可能会帮助你。

http://help.dottoro.com/ljnvjiow.php

干杯,斯特凡

于 2012-07-05T16:15:20.527 回答