摘要:
1.所有浏览器都不报错,只有ie6报错的话,检查编码是否一致。2.notepad++的自动提示onClick的c是大写。3.设置了position:relative的元素在ie6 7下隐藏不了。4.简单的判断ie 6 7 8方法var isIE = !!window.ActiveXObject; var isIE6 = isIE && !window.XMLHttpRequest; var isIE7 = !!(!window.addEventListener && window.XMLHttpRequest && !document.query 阅读全文
随笔档案-2012年07月
返回顶部按钮js挂件
2012-07-09 17:18 by 边缘er, 315 阅读, 收藏, 编辑
摘要:
(function(){ var img = {imgW:50, imgH:50, right:5, bottom:5, imgSrc:'images/gototop.png'}, body = document.body, html = document.documentElement; //获取滚动条高度 function getPageScroll(){ var yScroll; if (html && html.scrollTop){ yScroll = html.scrollTop; } else if (body) { yScroll = body. 阅读全文