常用命令n list // 展示当前安装的所有版本 n 14.17.4 // 安装指定版本 n latest // 安装最新版本 n stable // 安装稳定版本
表单交互.auth-form-fieldset input:hover,.auth-form-fieldset select:hover,.auth-form-fieldset textarea:hover { border: 1px solid rgba(47,184,241,.4) } .auth-form-fieldset input::-moz-placeholder,.auth-form-fieldset select::-moz-placeholder,.auth-form-fieldset textarea::-moz-placeholder { color: #35506b } .auth-form-fieldset input::placeholder,.auth-form-fieldset select::placeholder,.auth-form-fieldset textarea::placeholder { color: #35506b } .auth-form-fieldset input:focus,.auth-form-f
chrome浏览器只要之前有”访问网站域名有做访问http网址自动跳转https处理“的历史记录,后面再通过http访问确实会有”访问http网址自动跳转https“问题,解决方法:1.地址栏输入: chrome://net-internals/#hsts2.在打开的页面Query HSTS/PKP domain处输入域名搜索3.找到底部Delete domain security policies一栏,输入想处理的域名,点击delete
/dialogs/attachment/attachment.js文件1.将 _this.fileList.push(json); 修改为 _this.fileList[$file.index()] = json;2.修改getInsertList 方法为:getInsertList: function () { var i, link, data, list = [], prefix = editor.getOpt('fileUrlPrefix'); for (i = 0; i < this.fileList.length; i++) { data = this.fileList[i]; if(data === undefined){ continue; } link = data.url; list.push({ title: data.original || link.substr(link.lastIndexOf(
const a = document.createElement('a')const url = body.data['fileUrl']a.href = urla.click()window.URL.revokeObjectURL(url)