06 2021 档案
摘要:1 <!DOCTYPE html> 2 <html lang="en"> 3 4 <head> 5 <meta charset="UTF-8"> 6 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 7 <meta name="viewpor
阅读全文
摘要:1. 事件对象: 事件触发时自动创建的,封装了事件发生的元素和属性的信息。(存在event信息里面) 2. 事件周期:事件捕获、事件对象的触发,冒泡触发 3. 事件冒泡的应用: (1)阻止冒泡 e.stopPropagation(); IE: e.cancelBubble = true; (2)事件
阅读全文
摘要:广义javascript ECMAScript + DOM + BOM DOM0 DOM1 DOM2 狭义javascript ECMAScript ES6 ES5 ES3 1. html事件 <div onclik="fn()"></div> function fn() { alert("hell
阅读全文
摘要:1. 博客侧边栏公告(支持HTML代码) (支持 JS 代码)<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initi
阅读全文