摘要:<!DOCTYPE html><html><head> <title>jquery</title> <script type="text/javascript" src="jquery-3.3.1.min.js"></script></head><body&
<!DOCTYPE html>
<html>
<head>
<title>jquery</title>
<script type="text/javascript" src="jquery-3.3.1.min.js"></script>
</head>
<body>
<script type="text/javascript">
// $(document).ready(function () {//文檔就緒函數(shù)
// $str="我是一個(gè)聲明變量";
// alert($str);
// })
$(document).ready(function () {
$("div").hide();
$("input").click(function () {
$("div").show();
})
})
</script>
<div style="width: 100px; height: 100px;background:pink; border-radius: 5px;"></div>
<input type="button" value="點(diǎn)擊">
</body>
</html>
批改老師:滅絕師太批改時(shí)間:2018-11-30 09:21:45
老師總結(jié):馬上就開始jQuery的學(xué)習(xí)啦,請(qǐng)繼續(xù)保持你的熱情,繼續(xù)加油!