What is the NS_ERROR_INVALID_POINTER error in Firefox?

后端 未结 3 1473
别跟我提以往
别跟我提以往 2021-01-22 07:47

While testing JavaScript code in Firefox 3.5 I sometimes get the following error:

Component returned failure code: 0x80004003 (NS_ERROR_INVALID_POINTER)
<         


        
3条回答
  •  渐次进展
    2021-01-22 08:37

    I just had the error by mistakenly trying to append an element to itself: elem.appendChild(elem);

提交回复
热议问题