jQuery入口函数四种写法
2021-04-25 08:27
标签:入口 query body 项目 jquer 16px 四种 type 其它 在项目中以上的写法都可以使用,个人比较推荐用第三种写法,简洁方便 jQuery入口函数四种写法 标签:入口 query body 项目 jquer 16px 四种 type 其它 原文地址:https://www.cnblogs.com/xdsuannai/p/12230562.htmlDOCTYPE html>
html lang="en">
head>
meta charset="UTF-8">
title>04-jQuery入口函数的其它写法title>
script src="js/jquery-1.12.4.js">script>
script>
// 1.第一种写法
$(document).ready(function () {
// alert("hello lnj");
});
// 2.第二种写法
jQuery(document).ready(function () {
// alert("hello lnj");
});
// 3.第三种写法(推荐)
$(function () {
// alert("hello lnj");
});
// 4.第四种写法
jQuery(function () {
alert("hello lnj");
});
script>
head>
body>
body>
html>