jQuery.expandingTextarea不在表中工作

运行jQuery插件bgrins / ExpandingTextareas ( github )时,100%-width表中的

CSS

 table { width: 100%; table-layout: fixed; } textarea { border: none; width: 100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } 

脚本

 $("textarea").expandingTextarea({ resize: function() //callback { var i=$('textarea').height(); //inspect the textarea and cell containing it, height difference is 4. $('#expand').attr('height',i+4+'px'); } }) 
Interesting Posts