摘要:<!DOCTYPE html><html><head> <title>jquery的基礎(chǔ)語法 </title> <script type="text/javascript" src="jquery-3.3.1.min.js"></script></head><
<!DOCTYPE html>
<html>
<head>
<title>jquery的基礎(chǔ)語法 </title>
<script type="text/javascript" src="jquery-3.3.1.min.js"></script>
</head>
<body>
<script type="text/javascript">
//$(選擇器).action()
$(document).ready(function(){
$str="我是一個(gè)變量";
alert($str);
$("div").hide();
$("button").click(function(){
$("div").show();
})
})
</script>
<div style="width: 100px ;height: 100px; background: yellow;"></div>
<button>點(diǎn)擊</button>
</body>
</html>
批改老師:滅絕師太批改時(shí)間:2019-02-22 13:27:19
老師總結(jié):完成的不錯(cuò) ! 后面開始就要帶案例測了哦 !