jquery中ready函数,$(function(){})与自执行函数的区别

Posted 奋斗的孩子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery中ready函数,$(function(){})与自执行函数的区别相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script type="text/javascript" src="js/jquery-1.12.1.js"></script>
<script type="text/javascript">

/**
* jQuery中的ready函数
*
*/
var jq = jQuery(document);
/*jQuery(document).ready(function(){
console.log("ready1")
});
jQuery(document).ready(function(){
console.log("ready2")
});*/
jq.ready(function(){
console.log("ready1")
});
jq.ready(function(){
console.log("ready2")
});

(function(){
console.log("自执行")
})();
$(function(){
console.log("jquery 自执行");
});

//console.log(jQuery(document) === jQuery(document))
</script>
</head>
<body>

</body>
</html>

以上是关于jquery中ready函数,$(function(){})与自执行函数的区别的主要内容,如果未能解决你的问题,请参考以下文章

jQuery中$(function(){})与(function($){})(jQuery)$(document).ready(function(){})等的区别详细讲解 ----转载

Jquery中"$(document).ready(function(){ })"函数的使用详解

jQuery中$(function(){})与(function($){})(jQuery)$(document).ready(function(){})等的区别详细讲解

jquery中ready函数,$(function(){})与自执行函数的区别

Jquery中$(document).ready()

jquery中的$(document).ready(function() {});