我正在使用javascript来计算bottom
属性以保持IE6中固定位置的元素,这是我的代码:
var target = document.getElementsByTagName("div")[0];
var targetBottom = 200;
window.onscroll = function (e) {
scrollTop = document.documentElement.scrollTop;
target.style.bottom = targetBottom - scrollTop + "px";
}
然而,这在IE6中不起作用,但在IE7及以上版本中。那我的代码出了什么问题?如何在IE6中使其工作?