Is “remove” a reserved keyword in Google Chrome?

后端 未结 3 949
死守一世寂寞
死守一世寂寞 2020-12-03 15:08

I have an interesting problem, and I think I got to the root of it, but I wanted to be sure. I have a link that calls a function called remove(). All browsers except Chrom

3条回答
  •  北海茫月
    2020-12-03 15:54

    Elements in Chrome have a .remove() method which allows for self-removal of an element instead of having to do it from the parent.

    The trouble is that when using attribute handlers, you get a different scope chain. That scope chain includes the element itself, as well as the document. This means that all properties of the element and document show up as variables.

    Because you named your function remove(), and because it's a global function/variable, it is being shadowed by the .remove property (now variable) on the element itself. This can be seen with an alert. If you change your handler to:

    onclick="alert(remove)"
    

    ...you'll get something like:

    function remove() { [native code] }
    

    So it's not that it's reserved, but rather that it's used as a property which ends up shadowing the global.


    To fix it, either use the global directly:

    onclick="window.remove()"
    

    Or change the function name.

提交回复
热议问题