何时返回错误

时间:2015-11-26 22:35:30

标签: javascript jquery

我想知道在控制台中返回特定错误时是否可以运行函数。例如,Google地图有时会返回此错误。

InvalidValueError: setPosition: not a LatLng or LatLngLiteral: in property lng: not a number

我想要做的是在发生此特定错误时发送alert()消息。这有可能吗?我将如何实现它?

1 个答案:

答案 0 :(得分:1)

你可以使用try-catch块。请参阅此页面上的以下内容:handling a specific error

在你的情况下:

if (e instanceof InvalidValueError) {
...