<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<title>元素选择器-www.plcxue.com</title>
<style type="text/css">
div{
height:150px;
width:150px;
background-color:green;
}
</style>
<script type="text/
javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("div").hide();
})
})
</script>
</head>
<body>
<div></div>
<button>点击隐藏div元素</button>
<p>当点击按钮时,会将div元素隐藏。</p>
</body>
</html>