[removed] vs [removed]

后端 未结 9 1461

Which is more widely supported: window.onload or document.onload?

9条回答
  •  不要未来只要你来
    2020-11-21 06:08

    In short

    • window.onload is not supported by IE 6-8
    • document.onload is not supported by any modern browser (event is never fired)

    window.onload   = () => console.log('window.onload works');   // fired
    document.onload = () => console.log('document.onload works'); // not fired

提交回复
热议问题