我有一个名为“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(){…});