摘要: 1. 通过typeof来判断 2. 通过instanceof来判断 或 通过constructor来判断 3. null直接全等判断即可 4. 万能判断方式:Object.prototype.toString.call() 1. 通过typeof来判断 typeof undefined // und 阅读全文
posted @ 2020-12-23 14:57 hiuman 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 利用闭包的方式 for (var i = 0; i < 10; i++) { var aObj = document.createElement('a') aObj.innerText = 'a标签' + i aObj.onclick = (function (i) { return functio 阅读全文
posted @ 2020-12-23 14:41 hiuman 阅读(187) 评论(0) 推荐(0) 编辑