TypeError: 'click' called on an object that does not implement interface HTMLElement

前端 未结 4 667

I have some javascript that sends data to a function that calls a php page, however I get an error that I can\'t find any information on. The postData() call is in the middl

4条回答
  •  无人共我
    2021-01-17 21:25

    I ran in to this when doing a jQuery $.ajax() call like you did. Apparently (in my case) it was caused by referencing a variable that wasn't in scope and was undefined. For example, in your code:

        "level":mycat,
        "extra":mytimer,
        "pid":pid
    

    If mycat, mytimer, or pid were null, and you're having the same problem, that would do it.

提交回复
热议问题