欢迎来到我爱模板网,请记住我们的域名5imoban.net。本站资源大部分免费下载。如需定制,可联系站长QQ543031222。如果您觉得本站不错,请推荐给您的好友!
各位热心的网友们,欢迎给本站留言!您的任何建议和意见本站都会认真查看,仔细采纳!
<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> 提示:您可以先修改部分代码再运行