首页 > 网站 > WEB开发 > 正文

调试JavaScript错误

2024-04-27 14:04:59
字体:
来源:转载
供稿:网友
<script type="text/javascript">
view sourcePRint?1 function myerror(_message,_url,_line) {
view sourceprint?1 alert("错误信息:" + _message +"/n错误的URI:" + _url +"/n错误的行数:" + _line );
show sourceview sourceprint?1 return true; //屏蔽系统的事件
show sourceview sourceprint?1 }
show sourceview sourceprint?1 //绑定错误事件
show sourceview sourceprint?1 window.onerror = myerror;
show sourceview sourceprint?1 //触发错误示例:
show sourceview sourceprint?1 window,onload = test;
show sourceview sourceprint?
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表