该脚本适用于 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>