当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM console.warn()用法及代码示例


console.warn()方法用于在控制台中写入警告消息。因此,打开控制台以显示输出(警告消息)。

用法:

console.warn( message )

参数:此方法接受强制的单个参数消息。此参数用于保存警告消息。


范例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>console.warn() Method</title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>HTML console.warn() Method</h2> 
    <p>Press F12 to view the message</p> 
    <script> 
        console.warn 
            ("This is a warning message for geeksforgeeks!"); 
    </script> 
</body> 
  
</html>

输出:

范例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>console.warn() Method</title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>HTML console.warn() Method</h2> 
    <p>Press F12 to view the message</p> 
    <script> 
        var Arr = ["Algorithm", "GeeksforGeeks", "Geeks"]; 
        console.warn(Arr); 
    </script> 
</body> 
  
</html>

输出:

支持的浏览器:console.warn()方法支持的浏览器如下:

  • chrome
  • Internet Explorer 8.0
  • Firefox 4.0
  • Opera
  • 苹果浏览器


相关用法


注:本文由纯净天空筛选整理自Mahadev99大神的英文原创作品 HTML | DOM console.warn() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。