标签: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>
标签:htm 同方 fun jquer cti alert title 方式 写法
原文地址:https://www.cnblogs.com/god1/p/12391185.html