Chrome浏览器控制台有用的命令
Chrome调试
某元素上到底绑定了哪些事件,控制台输入命令:
获取元素所有事件信息(等价于控制台的Event Listeners标签)
getEventListeners(document.querySelector(".common_block > button"))
监控:获得元素触发的所有事件
monitorEvents(document.querySelector(".common_block > button"))
监控:获得元素触发的click事件
monitorEvents(document.querySelector(".diggit"),"click")
取消监控
unmonitorEvents(document.querySelector(".common_block > button"))