摘要:
//填写地址文本域,默认一行显示。输入时,高度随内容变化。 $('#address-write').on('input',function() { $(this).css({ 'height': 'auto' }).height( this.scrollHeight ); }); 阅读全文
摘要:
记录解决缓存的办法:(一直补充) 1、<meta http-equiv="expires" content="Wed Dec 27 2017 14:58:03 GMT+0800"> content是指定页面过期的时间。到期后,再次访问这个页面,就会重新请求服务器。更新页面。 阅读全文