需要代码
------解决方案--------------------
- JScript code
$(function () {
$("#文本框ID").mouseenter(function () {
$(this).animate({ heigth: "50" }, "slow", "swing", null);
});
$("#文本框ID").mouseleave(function () { $(this).css('height', '30px'); });
});