js 獲取控制台的錯誤信息


適合移動端調試的時候優化的報錯使用。缺點是無法打印出多條記錄,有方法的同學留言告訴我。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>

<body>
    <input type="button" value="View message" onclick="" />
    <script>
        onerror = function(msg, url, row,col) {
            var txt = '<div style="color: rgb(232, 232, 232); line-height: 3.2; white-space: pre; font-family: Menlo, Consolas, monospace; font-size: 13px; position: fixed; z-index: 9999; padding: 10px; left: 0px; right: 0px; top: 0px; bottom: 0px; overflow: auto; background: rgba(0, 0, 0, 0.85098);">';
            txt += '<span style="background-color:#E36049; color:#fff; padding:2px 4px; border-radius: 2px">ERROR</span> in ' + url + '\n';
            txt += ' <span style="color:#E36049;">✘</span> <u><span style="color:#6D7891;">' + msg + '</span></u>  in line ' + row + ':' + col;
            txt += '</div>';
            document.body.innerHTML = txt;
            return true;  //加上這句控制台就不會報錯
    }
test();
sad();
</script>
</body>

</html>

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM