适合移动端调试的时候优化的报错使用。缺点是无法打印出多条记录,有方法的同学留言告诉我。

<!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>

最新文章

  1. [bzoj2653][middle] (二分 + 主席树)
  2. LInux 安装东西
  3. knn原理与实践
  4. JUC系列回顾之-CountDownLatch底层原理和示例
  5. Codeforces Round #123 (Div. 2)
  6. IAR Embedded Workbench IDE 显示行号
  7. nginx日志切割并使用flume-ng收集日志
  8. Redis VS Memcached
  9. Android 用MediaCodec实现视频硬解码(转)
  10. Android BaseAdapter ListView (明星简介列表)
  11. Delphi的时间与字符串函数代码示例
  12. [UWP]创建一个进度按钮
  13. PEP8
  14. C/S架构自动化测试入门
  15. TensorFlow走过的坑之---数据读取和tf中batch的使用方法
  16. centos 7 rpm方式安装mysql
  17. 使用soap遇到的缓存问题
  18. Scala多重继承及AOP
  19. ReactNative快速入门
  20. Makefile ------ .PHONY的作用

热门文章

  1. input的placeholder文字颜色修改
  2. MVC Autofac 注入点
  3. Redis开启持久化
  4. javascript document.compatMode属性
  5. datanode启动不了
  6. foxmail配置office365邮箱
  7. 【转】SpringTest框架JUnit单元测试用例获取ApplicationContext实例的方法
  8. win7 删除Windows服务的方法
  9. ACM Arithmetic Expression
  10. HTML无刷新提交表单