摘要:
1. 通过typeof来判断 2. 通过instanceof来判断 或 通过constructor来判断 3. null直接全等判断即可 4. 万能判断方式:Object.prototype.toString.call() 1. 通过typeof来判断 typeof undefined // und 阅读全文
摘要:
利用闭包的方式 for (var i = 0; i < 10; i++) { var aObj = document.createElement('a') aObj.innerText = 'a标签' + i aObj.onclick = (function (i) { return functio 阅读全文