ECMAscript 5는 일반 실행 모드 외에도 두 번째 실행 모드인 "엄격 모드"를 추가합니다. 다음 기사에서는 JavaScript 엄격 모드에 대한 몇 가지 관련 정보를 주로 소개합니다. 필요한 친구가 함께 살펴보겠습니다.
머리말
Javascript를 배우거나 사용할 때 많은 사람들이 JavaScript에서 이것에 대해 혼란스러워했다고 생각합니다. 따라서 이 기사에서는 이에 대한 여러 방향을 엄격 모드로 요약합니다.
1. 전역 범위의 This
엄격 모드의 전역 범위에서 This는 창 개체를 가리킵니다.
"use strict"; console.log("严格模式"); console.log("在全局作用域中的this"); console.log("this.document === document",this.document === document); console.log("this === window",this === window); this.a = 9804; console.log('this.a === window.a===',window.a);
2. 전역 범위의 함수에 있는 This this
Strict 모드에서 this 함수의 this는 unundefined
"use strict"; console.log("严格模式"); console.log('在全局作用域中函数中的this'); function f1(){ console.log(this); } function f2(){ function f3(){ console.log(this); } f3(); } f1(); f2();
3. 객체의 함수(메서드)에서 This
Strict 모드에서 객체는 함수의 this는 호출 함수의 객체 인스턴스를 가리킵니다
"use strict"; console.log("严格模式"); console.log("在对象的函数中的this"); var o = new Object(); o.a = 'o.a'; o.f5 = function(){ return this.a; } console.log(o.f5());
4. 생성자의 This
엄격 모드에서 생성자의 this는 생성자가 만든 객체 인스턴스를 가리킵니다. .
"use strict"; console.log("严格模式"); console.log("构造函数中的this"); function constru(){ this.a = 'constru.a'; this.f2 = function(){ console.log(this.b); return this.a; } } var o2 = new constru(); o2.b = 'o2.b'; console.log(o2.f2());
5. 이벤트 처리 함수의 this
Strict 모드의 이벤트 처리 함수에서 이벤트를 트리거한 대상 개체를 가리킵니다.
"use strict"; function blue_it(e){ if(this === e.target){ this.style.backgroundColor = "#00f"; } } var elements = document.getElementsByTagName('*'); for(var i=0 ; i<elements.length ; i++){ elements[i].onclick = blue_it; } //这段代码的作用是使被单击的元素背景色变为蓝色
6. 인라인 이벤트 처리 함수의 경우
엄격 모드의 인라인 이벤트 처리 함수에는 다음 두 가지 상황이 있습니다.
<button onclick="alert((function(){'use strict'; return this})());"> 内联事件处理1 </button> <!-- 警告窗口中的字符为undefined --> <button onclick="'use strict'; alert(this.tagName.toLowerCase());"> 内联事件处理2 </button> <!-- 警告窗口中的字符为button -->
위 내용은 JavaScript 엄격 모드의 포인팅 문제에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!