前端技巧(不定时更新)

时间:2022-12-25 06:39:36

1.关于jquery的animate():style无法给宽高auto,需要先转换

 1 function writeComment() {
 2     var el = $('.textareaBox');
 3     curHeight = el.height();
 4     autoHeight = el.css('height', 'auto').height();
 5     el.height(curHeight).animate({height: autoHeight}, 300);
 6     setTimeout(function () {
 7         $('.commentBtn img').attr('src','__IMG__/article/09.png');
 8         $('.commentBtn span').text('收  起');
 9         $('.commentBtn').attr('onclick','shou()');
10     });
11 }

 2.css超出部分省略号

overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;