<textarea type="text" placeholder="直接填写联系地址" rows="1" id="address-write" maxlength="100"></textarea>
//填写地址文本域,默认一行显示。输入时,高度随内容变化。 $('#address-write').on('input',function() { $(this).css({ 'height': 'auto' }).height( this.scrollHeight ); });