兼容IE6的fixed定位 来源:未知 作者: 类型:图文教程 点击次数: 发布时间:2014-01-06 16:44:33 <style> *{margin:0} body{ height:1000px; width:1000px; } #a{ width:300px; height:100px; background:red; } </style> <script> var isie6 = window.XMLHttpRequest?false:true; window.onload = function(){ var a = document.getElementById('a'); var d = document.getElementById('d'); if(isie6){ a.style.position = 'absolute'; window.onscroll = function(){ d.innerHTML = ''; } }else{ a.style.position = 'fixed'; } a.style.left= '0'; a.style.bottom = '0'; } </script> <body style="height:1000px;"> <div id ="d" style="display:none;">rgrrrrrrrr</div> <div id='a'>test</div> 提示:您可以先修改部分代码再运行 TAGS: IE6 fixed定位 上一篇: js控制滚动条 下一篇: js邮箱验证,正则表达式验证邮箱