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.
我需要在页面加载后立即加载一个函数,但我正在使用一个不让我访问 BODY 标记的 CMS。所以我无法将它加载到正文中,而是加载到页面的内容中。关于在页面内容中加载功能的最佳方式有什么建议吗?
我更喜欢在常规的 Javascript 中使用它,Jquery 也一直在导致网站出现问题。
您可以使用
window.onload = function() { ... };
正如 Quentin 评论的那样,您也可以使用addEventListenerorattachEvent。
addEventListener
attachEvent
如果您不需要等到 DOM 准备好。
<script> function_call(); </script>
否则将其绑定到 load 事件addEventListener。