熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

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

2022-06-13   來源: JSP教程 
這篇文章介紹了jQuery隨便控制任意div隱藏的方法有需要的朋友可以參考一下   復制代碼 代碼如下:

  
<!DOCTYPE html>
<html>
<head>
<style>
div { background:#ece; width:px;
height:px; margin:px; float:left; }
</style>
<script src="
</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();
});
</script>
</body>
</html>


From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20061.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.