我们如何在 btn click in asp.net 上增加或减少 div 的大小?
//stylesheet
<style>div { width:50px; height:70px; float:left; margin:5px;
background:rgb(255,140,0); }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
//div content
<body>
<div></div>
</body>
//script which m using for clicking
<script>$("div").one('click', function () {
$(this).height(30);
});</script>