使用 firebug 和 google chrome 的 web 控制台测试 typeof 会显示不同的结果。
萤火虫:
console.log(typeof Node); //object
console.log(typeof HTMLDivElement); //object
Chrome 的控制台
console.log(typeof Node); //function
console.log(typeof HTMLDivElement); //function
使用 firebug 和 google chrome 的 web 控制台测试 typeof 会显示不同的结果。
萤火虫:
console.log(typeof Node); //object
console.log(typeof HTMLDivElement); //object
Chrome 的控制台
console.log(typeof Node); //function
console.log(typeof HTMLDivElement); //function