方法 | 說明 | 歸屬 |
alert(msg) | 瀏覽器彈出警示框 | 瀏覽器 |
console.log(msg) | 瀏覽器控制檯打印輸出信息 | 瀏覽器 |
prompt(info) | 瀏覽器彈出輸入框,用戶能夠輸入 | 瀏覽器 |
程序示例:html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <script> // 這是一個輸入框 prompt('請輸入您的年齡'); // alert提出警示 輸出的 展現給用戶的 alert('計算結果是'); // console 控制檯輸出 給程序員測試用的 console.log('我是程序員能看到的'); </script> </head> <body> </body> </html>