摘要:
naturalWidth 阅读全文
摘要:
line-height:normal;padding:11px 0; 阅读全文
摘要:
function updateUrl(url,key){ var key= (key || 't') +'='; //默认是"t" var reg=new RegExp(key+'\\d+'); //正则:t=1472286066028 var timestamp=+new Date(); if(u 阅读全文
摘要:
history.pushState(null, null, document.URL) window.addEventListener('popstate', function () { history.pushState(null, null, document.URL) }) 阅读全文
摘要:
上传文件 scp 本地文件目录/test1.txt root@服务器地址:/目录 上传目录 scp -r 本地文件目录 root@服务器地址:/目录 阅读全文
摘要:
svn st | grep '^\?' | tr '^\?' ' ' | sed 's/[ ]*//' | sed 's/[ ]/\\ /g' | xargs svn add 阅读全文
摘要:
后端配置:https://router.vuejs.org/zh-cn/essentials/history-mode.html 阅读全文
摘要:
获取状态this.$store.state.remember 存储状态this.$store.commit('remember', false) 阅读全文
摘要:
// 获取子iframe var _iframe = document.getElementById('id').contentWindow;// 获取iframe里img标签var imgs =_iframe.document.getElementById('Id'); 阅读全文