码迷,mamicode.com
首页 > Web开发 > 详细

jQuery的不同方式

时间:2020-03-01 19:35:50      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:htm   同方   fun   jquer   cti   alert   title   方式   写法   

<!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的不同方式

标签:htm   同方   fun   jquer   cti   alert   title   方式   写法   

原文地址:https://www.cnblogs.com/god1/p/12391185.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!