サマリー:<!DOCTYPE html> <html> <head> <title>jQuery的基礎語法</title> <link rel="stylesheet" type="text/css" href=""> <sc
<!DOCTYPE html> <html> <head> <title>jQuery的基礎語法</title> <link rel="stylesheet" type="text/css" href=""> <script type="text/javascript" src="../jQuery/jquery-3.3.1.min.js"></script> </head> <body> <script type="text/javascript"> // 放入javaScript代碼或者jQuery代碼 // 文檔就緒函數(shù) // 基本格式 // $(document).ready(function(){ // jQuery代碼 // }) // $(選擇器).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>
添削の先生:天蓬老師添削時間:2019-04-10 16:20:05
先生のまとめ:$('button').click(function(){
$('div').show()
})
關(guān)于事件, 以后推薦使用on()