window.onscroll = function()
{
if( window.XMLHttpRequest ) {
var bodyId=document.getElementById('bodymain');
if (bodyId.scrollTop > 187) {
//make some div's position fixed
} else {
//make some div's position absolute
}
}
}
此代码适用于 Chrome,但不适用于 IE9。你能推荐这个代码的跨浏览器版本吗