日期:2014-05-16 浏览次数:20429 次
<script type="text/javascript" src="jquery.js"></script>
<script>
function $(id){
return document.getElementById(id);
}
function show(){
$("peng").slideDown();
}
</script>
<style>
#peng{
width:100px;
height:50px;
display:none;
}
input{
margin-top:200px;
}
</style>
<body>
<p id="peng">wt</p>
<input name="" type="button" onclick="show()" value="点击" />
</body>