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

jQuery的基本語法

asal 2019-02-16 21:27:57 274
abstrak:<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><title>jQuery基本語法</title><script src="jqu/jq_3.3.1_mi.js"></script

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<title>jQuery基本語法</title>

<script src="jqu/jq_3.3.1_mi.js"></script>  //必須鏈接jQuery文件

<style>

.box{width: 300px;height: 300px;border: 1px solid #ccc;margin: 0px auto;background: gold;}

</style>

</head>

<body>

<div class="box"></div>

<button>點擊變色變寬</button>

<script>


$(document).ready(function(){       //文檔就緒函數(shù)

$('button').click(function(){       //獲取button并點擊

$('.box').css('background','red')   //改變背景顏色

$('.box').css('width','800px')      //改變DIV寬度

})

})

</script>

</body>

</html>


Guru membetulkan:西門大官人Masa pembetulan:2019-02-17 09:33:48
Rumusan guru:作業(yè)寫的很好。以后寫js代碼的時候,最好加上分號";"

Nota Keluaran

Penyertaan Popular