完全呈现div
时,我需要调用 javascript 函数。但是,我不知道要使用的正确事件。
感谢您的帮助。
答案 0 :(得分:6)
您可以在调用函数或执行的文档中内嵌脚本。只需将其逻辑地放在应该呈现的位置。
<html>
<body>
<div><h1>Wait for it!</h1></div>
<script type="text/javascript">
document.write("<h2>Js process</h2>");
alert("Stopping document process");
</script>
<div><h3>Done!</h3></div>
</body>
</html>
答案 1 :(得分:1)
没有事件,只需创建一个回调函数,在html编写完成后,调用你的回调例程。
function x ( html, callback) {
divElement.innerHTML = html;
callback();
}
答案 2 :(得分:1)
我认为你需要这样的东西:
<!-- This is the Div to be rendered: -->
<div>
<script>
/* This script is executed when all div is rendered!!*/
</script>
</div>