87,993
社区成员
发帖
与我相关
我的任务
分享 $(function () {
$("#textbox1").textbox('textbox').bind({
blur: function () {
$(this).css({ height: 19 }).parent().css({ height: 'auto' });
}
, focus: function () {
console.log('focus')
$(this).css({ height: 60 }).parent().css({ height: 'auto' });
}
})
});