abstract:<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>jQuery介绍与安装</title> <script type="text/javascript" src="
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>jQuery介绍与安装</title> <script type="text/javascript" src="static/jQuery/jquery-3.4.1.js"></script> </head> <body> <script type="text/javascript"> // 文档就绪函数 // 基本格式: 防止页面在完成之前加载代码 // $(document).ready(function(){ // }) // $(selector).action() 基本语法 $(document).ready(function(){ // $str="我是一个声明变量"; // alert($str); $("div").hide(); $("button").click(function(){ $("div").show(); }) }) </script> <div style="width:100px;height:100px;background:pink;"> </div> <button>点击</button> </body> </html>
Correcting teacher:天蓬老师Correction time:2019-07-30 09:31:26
Teacher's summary:推荐以后只用简写: $(function(){})