jq用法:入口写法
Posted cxx8181602
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jq用法:入口写法相关的知识,希望对你有一定的参考价值。
jq入口写法demo:
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>jq用法:入口写法</title> 6 </head> 7 <body></body> 8 <script src ="http://code.jquery.com/jquery-2.2.4.js"></script> 9 <script> 10 //js 11 window.onload = function(){ 12 13 }; 14 //jq 方法一 15 $(document).ready(function(){ 16 alert(1); 17 }); 18 //jq 方法二 19 jQuery(document).ready(function(){ 20 alert(2); 21 }); 22 //jq 方法三 23 jQuery(function(){ 24 alert(3); 25 }); 26 //jq 方法四(推荐写法) 27 $(function(){ 28 alert(4); 29 }); 30 //jq 方法五(快加载) 31 (function($, window){ 32 alert(5); 33 })(); 34 </script> 35 </html>
以上是关于jq用法:入口写法的主要内容,如果未能解决你的问题,请参考以下文章
学习04-jq(jq的使用,jq的入口函数,jq与DOM的转换,基本选择器,层级选择器,设置样式,筛选选择器,筛选方法)