摘要:<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>jQuery</title> <script type="text/javascript" src="jq_3.
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>jQuery</title> <script type="text/javascript" src="jq_3.3.1_mi.js"></script> </head> <body> <script type="text/javascript"> $(function(){ // $str="我是一个变量" // document.write($str) $("div").hide() $("button").click(function(){ $("div").show() }) }) </script> <div style="width: 200px;height: 200px;background: pink;"></div> <button>点击显示</button> </body> </html>
批改老师:天蓬老师批改时间:2019-01-25 15:17:27
老师总结:js语句,推荐加上分号, 以防止代码压缩时出错