Can I add attributes to 'window' object in javascript?

前端 未结 7 1270
故里飘歌
故里飘歌 2020-12-13 18:02

Can I add any random attribute to \'window\' object in javascript? Some thing like:

window.my_own_attr = \"my_value\"

Does it have any side

7条回答
  •  既然无缘
    2020-12-13 18:26

    Can I add any random attribute to 'window' object in javascript?

    Yes, just like you've shown.

    Does it have any side effects with any libraries?

    No, not unless you use a library which sets a property you then overwrite.

    And is it cross-browser compatible?

    Yes, completely.


    Having said that, this practice is generally frowned upon. You could end up overwriting something you don't want to.

提交回复
热议问题