亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

jQuery的基礎(chǔ)語法

??? 2019-04-10 15:56:14 252
????:<!DOCTYPE html> <html> <head> <title>jQuery的基礎(chǔ)語法</title> <link rel="stylesheet" type="text/css" href=""> <sc
<!DOCTYPE html>
<html>
<head>
	<title>jQuery的基礎(chǔ)語法</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()

??? ??

?? ??