What html tags support the onload javascript event?

后端 未结 2 498
滥情空心
滥情空心 2020-12-11 05:12

I know that img body and iframe allow you to add onload= to the tag and have to execute. What other tags support the <

相关标签:
2条回答
  • 2020-12-11 05:33

    You can also use it on <script> tags except IE where you need onreadystatechange for the same effect.

    I think it also works on <object> elements in some browsers (but just a few).

    0 讨论(0)
  • 2020-12-11 05:44

    The specs for html4 only mention body and frameset: http://www.w3.org/TR/html4/interact/scripts.html#h-18.2.3

    I think it's browser dependent.

    0 讨论(0)
提交回复
热议问题