该文被密码保护。 阅读全文
摘要:
``` clientX和clientY:浏览器视口的位置坐标(和滚动无关) pageX和pageY:浏览器页面的位置坐标(和滚动有关) screenX和screenY:浏览器页面的位置坐标(和滚动无关,只和移动浏览器的位置有关,或者缩放浏览器有关) 页面没有发生上下滚动时,clientY==page 阅读全文
摘要:
```
window.onscroll=function () { var scrollTop=document.documentElement.scrollTop||document.body.scrollTop; var scrollLeft=document.documentElement.scrollLeft||document.body.scrollLeft; ... 阅读全文
摘要:
``` 链接 ``` 阅读全文
摘要:
``` // 一个函数处理同个元素的多个事件 var oBtn=document.querySelector('#btn'); oBtn.onclick=handler; oBtn.onmouseover=handler; oBtn.onmouseout=handler; function handler(even... 阅读全文