摘要:
box.onclick = function () { alert('hello world'); } 无返回值 box.onclick = function () { // 弹出提示,让用户输入内容 var userName = prompt('请输入姓名', '张三'); console.log 阅读全文
摘要:
function $(id) { return document.getElementById(id);} // 处理浏览器兼容性// 获取第一个子元素function getFirstElementChild(element) { var node, nodes = element.childNo 阅读全文
摘要:
// 鼠标在当前页面的位置e.clientX e.pageX有兼容性问题 从IE9以后才支持 e = e || window.event;console.log(e.pageX);console.log(e.pageY); ### 滚动偏移var box = document.getElementB 阅读全文
摘要:
// eventName, 不带on, click mouseover mouseout function addEventListener(element, eventName, fn) { // 判断当前浏览器是否支持addEventListener 方法 if (element.addEven 阅读全文