Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML DOM console.warn() 메서드

<시간/>

HTML DOM console.warn() 메서드는 콘솔에 경고 메시지를 표시하는 데 사용됩니다. 일부 브라우저에서는 이러한 경고에 대한 콘솔 로그에 작은 느낌표가 있습니다. console.warn() 메서드는 코드 실행을 중단하지 않습니다. 개발자는 console.warn() 메서드를 사용하여 일부 사용자 작업에 대해 사용자에게 경고를 줄 수 있습니다.

구문

다음은 console.warn() 메서드의 구문입니다. -

console.warn(message)

여기서 메시지는 문자열 또는 객체 유형의 필수 매개변수입니다. 콘솔 보기에 경고로 표시됩니다.

예시

console.warn() 메서드의 예를 살펴보겠습니다. -

<!DOCTYPE html>
<html>
<body>
<h1>console.warn() Method</h1>
<p>Click the below button more than 4 times</p>
<button onclick="warning()" type="button">CLICK</button>
<script>
   var i=0;
   function warning(){
      i++;
      if(i>4)
      console.warn("You have clicked this button too many times");
   }
</script>
<p>Press F12 key to view the warning message in the console.</p>
</body>
</html>

출력

이것은 다음과 같은 출력을 생성합니다 -

HTML DOM console.warn() 메서드

CLICK 버튼을 4번 이상 클릭하고 콘솔 탭에서 출력을 볼 때.

HTML DOM console.warn() 메서드

위의 예에서 -

사용자가 클릭하면 warning() 메서드를 실행하는 CLICK 버튼을 만들었습니다.

<button onclick="warning()" type="button">CLICK</button>

warning() 메서드는 변수 i를 증가시킵니다. 변수 i가 4보다 커지면 msg 매개변수를 경고로 표시하는 console.warn(msg) 메서드가 실행됩니다. -

var i=0;
function warning(){
   i++;
   if(i>4)
   console.warn("You have clicked this button too many times");
}