Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
element.addEventListener('load', func)和有什么区别element.onload=func吗?
element.addEventListener('load', func)
element.onload=func
DOM "load" 事件的作用仍然非常有限。这意味着它只会为window对象、图像和<script>元素触发。直接onload分配也是如此。这两者之间没有技术差异。可能.onload =具有更好的跨浏览器可用性。
window
<script>
onload
.onload =
但是,您不能将加载事件分配给<div>or<span>元素或诸如此类的东西。
<div>
<span>