js event
文章平均质量分 77
qq_29209481
这个作者很懒,什么都没留下…
展开
-
JS-事件类型-UI事件
//感谢杨老师 事件类型-UI事件 * { margin: 0; padding: 0; } body { height: 2000px; background: #ccc; } #box { width: 300px; height: 200px; margin: 100px auto; overflow-y: scroll; background: #fff; bo原创 2018-02-06 20:16:15 · 184 阅读 · 0 评论 -
表格事件
//感谢杨老师 form document.querySelector('#username').onchange=function(){ alert(this.value) } // document.querySelector('#password').onfocus=function(){ // alert(this.tagName原创 2018-02-06 20:12:10 · 313 阅读 · 0 评论 -
eventListener
//感谢杨老师 Document body{ width: 500px; height:500px; background-color: yellow; } #outer{ width: 300px; height: 300px; background-color: green; } #inner{ width: 100px; height:100p原创 2018-02-06 20:20:12 · 210 阅读 · 0 评论