JavaScript 严格模式
! function () { var /* */testA = function () { ; console.log( this ) } , testB = function () { "use strict" ; console.log( this ) } ; testA() // 输出window ; testB() // 输出undefined 严格模式下 this 不能指向全局 ; testA.call(‘test‘) // 转换成包装类型 ; testB.call(‘test‘) // 输出原始类型 }()
! function () { "use strict" ; try { ; console.log( arguments.callee ) } catch(e) { ; console.log( ‘no callee‘ ) } //; console.log( arguments = null ) try 都报错 无解 ; console.log( arguments[0] = arguments.length = null ) //还好这些可以用 }()
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。