代码
1.html文件
<title>第一个jQuery程序</title>
<script type="text/javascript" src="../../jquery/jquery-3.3.1.js"></script>
<script type="text/javascript">
$(document).ready(function() {
alert("我编写的第一个jQuery程序!^^");
});
</script>
</head>
效果
代码
1.html文件
<title>第一个jQuery程序</title>
<script type="text/javascript" src="../../jquery/jquery-3.3.1.js"></script>
<script type="text/javascript">
$(document).ready(function() {
alert("我编写的第一个jQuery程序!^^");
});
</script>
</head>
效果