这篇文章介绍了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>