⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 onerrorexample5.htm

📁 最全面的WEB开发资料集合。。。有XML、HTML、JavaScript、JSCRIPT、CSS、DOM、Ajax
💻 HTM
字号:
<html>
    <head>
        <title>OnError Example</title>
        <script type="text/javascript">
            window.onerror = function (sMessage, sUrl, sLine) {
                alert("An error occurred:\n" + sMessage + "\nURL: " + sUrl + "\nLine Number: " + sLine);
                return true;
            }
            alert("Syntax error.";
        </script>
    </head>
    <body onload="nonExistentFunction()">
        <p>The syntax error on this page comes <em>after</em> the <code>onerror</code>
        event handler is defined, so the custom dialog catches it.</p>
        <p><strong>Note:</strong> This may not work in newer browsers with tighter security restrictions.</p>
    </body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -