Microsoft(R) JScript(R) description 属性 |
语言参考 版本 5 |
返回或设置与特定错误相联系的描述字符串。
object.description [= stringexpression]description 属性的语法组成部分如下:
部分 描述 object Error 对象的任意实例。 stringexpression 包含错误描述的字符串表达式。
description 属性包含与特定错误相联系的错误信息字符串。使用包含在这个属性中的值,来警告用户发生了一个不能或不想处理的错误。下面的例子举例说明了 description 属性的使用:
try { x = y // 产生错误。} catch(var e{ // 创建局部变量 e。 document.write(e) // 打印 "[object Error]". document.write((e.number & 0xFFFF)) // 打印 5009. document.write(e.description) // 打印 "'y' is undefined". }