Exception Illegal value in Firebug

2020-05-01 06:21发布

Today, I've found exception in my firebug console:

uncaught exception: [Exception... "Illegal value" nsresult: "0x80070057 (NS_ERROR_ILLEGAL_VALUE)" location: "JS frame :: http://portal.aolcdn.com/p5/_v39.5/js/main.js :: anonymous :: line 196" data: no]

1条回答
混吃等死
2楼-- · 2020-05-01 06:41

This happens for example happen you pass undefined (instead of a string) as an URL to an XmlHttpRequest object. The object detects that this is an invalid value and throws an exception. The exact cause of the problem depends on the code at that position.

Inspect the values of the variables that are used there and see if any of them contain unexpected content.

查看更多
登录 后发表回答