运行 ❯
获取你
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Errors</h1> <p>In this example we have written "alert" as "adddlert" to deliberately produce an error.</p> <p>The name property of the Error object returns the name of the error and the message property returns a description of the error:</p> <p id="demo" style="color:red"></p> <script> try { adddlert("Welcome guest!"); } catch(err) { document.getElementById("demo").innerHTML = err.name + "<br>" + err.message; } </script> </body> </html>