我可以在单个html页面中多次使用jquery的$(document).ready()吗?

前端之家收集整理的这篇文章主要介绍了我可以在单个html页面中多次使用jquery的$(document).ready()吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个名为“text.html”的html页面
<html>
    <body>
        <script type="text/javascript" src="jquery.js"></script>
        <script type="text/javascript" src="js/Photos.js"></script>
        <script type="text/javascript" src="js/Animations.js"></script>
    </body>
</html>

Photos.js和Animations.js都以“$(document).ready()”开头

//Javascript File Photos.js
$(document).ready(function() {
    //My code here ....
});

//Javascript File Animations.js
$(document).ready(function() {
    //My code here ....
});

如果我在单个html页面中使用多个$(document).ready(function(){是否重要?

提前致谢

解决方法

您可以根据需要使用多个,但为了便于阅读,最好将其保留为一个.

还要考虑使用short hand $(function(){…});

原文链接:https://www.f2er.com/html/223934.html

猜你在找的HTML相关文章