我需要了解身体的onload何时被调用
我在w3school中读到onload =脚本要在文件加载时运行这是什么意思?
这是不是意味着
> html / jsp页面在渲染正文中的任何元素之前加载,就像任何表格或jsp scriplets一样,例如:<%= request.getParameter(“NAME”)%>
>或者是在页面/正文渲染之后?
例如:
我有一堆参数(<%= request.getParameter(“NAME”)%>,…)所以为了使用它们,我会将它们放在一些隐藏的表格项目中.然后我可以使用身体负荷吗?
解决方法
与
w3schools,01001不同:
The load event fires at the end of the document loading process. At this point,all of the objects in the document are in the DOM,and all the images and sub-frames have finished loading.
所以DOM树已准备就绪,所有元素都已加载.