예, 모든 JavaScript 선언을 맨 위에 두는 것이 좋습니다. 예제를 살펴보겠습니다 -
<html> <head> <title>JavaScript String match() Method</title> </head> <body> <script> // all the variables declared at top var str, re, found; str = "For more information, see Chapter 3.4.5.1"; re = /(chapter \d+(\.\d)*)/i; found = str.match( re ); document.write(found ); </script> </body> </html>
작동하는 이유는 다음과 같습니다. -
위 내용은 JavaScript에서는 모든 선언을 맨 위에 두는 것이 좋은 습관입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!