摘要:<!DOCTYPE html><html><head> <title></title> <script type="text/javascript" src="jquery-3.3.1.js"></script></head><body>
<!DOCTYPE html> <html> <head> <title></title> <script type="text/javascript" src="jquery-3.3.1.js"></script> </head> <body> <script type="text/javascript"> //jquery就緒 //$(選擇器).action() $(document).ready(function(){ // $str="wo是一個聲明變量" // alert($str); $("div").hide() $("button").click(function(){ $("div").show() }) }) </script> <div style="width:100px;height:100px;background:pink;"></div> <button>點擊</button> </body> </html>
批改老師:韋小寶批改時間:2018-11-16 16:37:28
老師總結(jié):不錯!下次代碼記得加上自己的總結(jié)以及高亮哦!課后還得多多練習(xí)??!