萬盛學電腦網

 萬盛學電腦網 >> 腳本專題 >> javascript >> jQuery隨便控制任意div隱藏的方法

jQuery隨便控制任意div隱藏的方法

這篇文章介紹了jQuery隨便控制任意div隱藏的方法,有需要的朋友可以參考一下   復制代碼 代碼如下:


<!DOCTYPE html>
<html>
<head>
<style>
div { background:#ece023; width:30px;
height:40px; margin:2px; float:left; }
</style>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
<div>a</div>
<div>b</div>
<div>c</div>
<div>d</div>
<div>e</div>
<div>f</div>
<script>
$("div").click(function () {
$(this).hide(1000);
});
</script>
</body>
</html>

copyright © 萬盛學電腦網 all rights reserved