日期:2014-05-16 浏览次数:20477 次
$(function () {
$("#文本框ID").mouseenter(function () {
$(this).animate({ heigth: "50" }, "slow", "swing", null);
});
$("#文本框ID").mouseleave(function () { $(this).css('height', '30px'); });
});