jQuery的不同方式
Posted god1
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery的不同方式相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>04-jQuery入口函数的其他写法</title>
<script src="../js/jquery-3.4.1.js"></script>
<script>
/* $(document).ready(function () {
alert("hello inj");
});*/
/*jQuery(document).ready(function () {
alert("hello inj");
});*/
/*$(function () {
alert("hello inj");
});
*/
/*jQuery(function () {
alert("hello inj");
});*/
/*
* 以上四种方式都是可以的推荐第三种
* $(function () {
alert("hello inj");
});
* */
$(function () {
alert("hello inj");
});
</script>
</head>
<body>
</body>
</html>
以上是关于jQuery的不同方式的主要内容,如果未能解决你的问题,请参考以下文章
为啥 Chrome 和 Firefox 以不同方式处理 jQuery ajax() 回调中设置的 javascript 变量?
为啥 Chrome 和 Firefox 以不同方式处理 jQuery ajax() 回调中设置的 javascript 变量?