博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Javascript的Error对象在不同浏览器是不一样的.
阅读量:6434 次
发布时间:2019-06-23

本文共 1540 字,大约阅读时间需要 5 分钟。

IE比较搞,第一个参数是number,其他浏览器第一个参数是message。Firefox则除了支持message以外还加入了两个参数fileName和lineNumber。但是在其文档中注明了非标准(Non-standard)

IE的文档

Firefox的文档

 

各个浏览器的比较文档

Creating a new Error object:

Internet Explorer supports the following form:

var errorObj = new Error([number[, description]]);

number 

Optional. Integer that specifies the error code. Default is 0. Sets the error property of the Error object.

message 

Optional. String that specifies the message of the error. Default is an empty string. Sets the description and messageproperties of the Error object.

Firefox supports the following form:

var errorObj = new Error([message[, fileName[, lineNumber]]]);

message 

Optional. String that specifies the message of the error. Default is an empty string. Sets the description and messageproperties of the Error object.

fileName 

Optional. String that specifies the name of the file where the error occurs. Default is the file where the Error object is created. Sets the fileName property of the Error object.

lineNumber 

Optional. Integer that specifies the line number where the error occurs. Default is the line number, where the Errorobject is created. Sets the lineNumber property of the Error object.

Opera, Google Chrome and Safari support the following form:

var errorObj = new Error([message]);

message 

Optional. String that specifies the message of the error. Default is an empty string. Sets the description and messageproperties of the Error object.

    本文转自Jake Lin博客园博客,原文链接:http://www.cnblogs.com/procoder/archive/2012/12/06/2804848.html,如需转载请自行联系原作者

你可能感兴趣的文章
笔试题错题集
查看>>
ssm+maven+pageHelper搭建maven项目实现快速分页
查看>>
UIImagePickerController, memory warning
查看>>
寻找缺失的数
查看>>
开发工程师人生之路(强烈推荐,分析的透彻!)——再次看,泪流满面!必须转型过来!...
查看>>
EASYAR初次使用体验
查看>>
我的vim配置文件
查看>>
线性表
查看>>
犯贱老爸
查看>>
Sencha-命令-CMD(工作区)(官网文档翻译31)
查看>>
Netty 核心组件 Pipeline 源码分析(一)之剖析 pipeline 三巨头
查看>>
POJ3468 A Simple Problem with Integers(线段树成段增减,区间求和)
查看>>
大整数运算||高精度运算
查看>>
并发编程之 协程
查看>>
多个项目使用同一个变量解决方式
查看>>
charactor controller角色平衡木问题解决办法
查看>>
gj8 元类编程
查看>>
Python 时间字符串和时间戳之间的转换
查看>>
实验一 操作系统
查看>>
实现效果——第一步原型
查看>>