码迷,mamicode.com
首页 > 其他好文 > 详细

文本域高度的动态变化

时间:2016-05-16 14:29:33      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:

HTML:
<!DOCTYPE >

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<style type="text/css">
* {
/*margin: 0px;
padding: 0;*/
font-family: "微软雅黑", "arial", " sans-serif";
font-size: 16px;
}

body {
margin: 20px;
}
</style>
<script type="text/javascript" src="js/jquery-2.2.2.min.js">
</script>

<script type="text/javascript">
$(function () {
var oComment = $("#comment");
$(".bigger").click(function () {
if (!oComment.is(":animated")) {
if (oComment.height() < 500) {
oComment.animate({height: "+=50"}, 400);
}
}
})

$(".smaller").click(function () {
if (!oComment.is(":animated")) {
if (oComment.height() > 50) {
oComment.animate({height: "-=50"}, 400);
}
}
})


});
</script>
</head>

<body>
<form action="" method="post">
<div class="msg">
<div class="msg_caption">
<span class="bigger">向下(+)</span>
<span class="smaller">向上(-)</span>
</div>
</div>
<textarea id="comment" rows="8" cols="25">
在线文本编辑器.在线文本编辑器.在线文本编辑器.
在线文本编辑器.在线文本编辑器.在线文本编辑器.
在线文本编辑器.在线文本编辑器.在线文本编辑器.
在线文本编辑器.在线文本编辑器.在线文本编辑器.

</textarea>
</form>

</body>

</html>

result:
技术分享

运行:
技术分享

文本域高度的动态变化

标签:

原文地址:http://www.cnblogs.com/theWayToAce/p/5497875.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!