摘要:<!DOCTYPE html><html><head charset="utf-8"> <title>jQuery-學(xué)習(xí)課程</title> <script type="text/javascript" src="css/jquery-3.4.1.min.js">&l
<!DOCTYPE html>
<html>
<head charset="utf-8">
<title>jQuery-學(xué)習(xí)課程</title>
<script type="text/javascript" src="css/jquery-3.4.1.min.js"></script>
</head>
<body>
<script type="text/javascript">
//$(選擇器).action()
$(document).ready(function () {
// body...
//$str="我是一個(gè)聲明變量!"
//alert($str);
$("div").hide()
alert("我已經(jīng)藏起來(lái)了!")
$("button").click(function () {
$("div").show()
// body...
})
})
</script>
<div style="width: 100px;height: 100px;background-color: pink;"></div>
<button>點(diǎn)擊顯示</button>
</body>
</html>
批改老師:天蓬老師批改時(shí)間:2019-06-24 10:22:54
老師總結(jié):之前有一段時(shí)間非常流行去掉代碼結(jié)尾的分號(hào), 后來(lái)javascript的開(kāi)發(fā)者出來(lái)說(shuō)了, 推薦加上分號(hào)