摘要:
<!DOCTYPE html> <meta charset="utf-8"> <style> body { text-align: center; } svg { margin-top: 32px; border: 1px solid #aaa; } .person rect { fill: #ff 阅读全文
摘要:
.DS_Storenode_modules//dist/npm-debug.log*yarn-debug.log*yarn-error.log*/test/unit/coverage//test/e2e/reports//build//config/selenium-debug.log # Edit 阅读全文
摘要:
this.$http({ url: this.exportUrl, data: this.useSearch, responseType: 'blob' }) .then((res) => { const blob = new Blob([res.data], { type: "applicatio 阅读全文
摘要:
$(function() { function init() { var ww = $(window).width(); var wh = $(window).height(); var href = location.search.substring(location.search.indexOf 阅读全文
摘要:
let options = { width: this.width, height: this.height, minWidth: this.minWidth, minHeight: this.minHeight, items: this.items, fontSizeTable: this.fon 阅读全文
摘要:
mounted: function () { var picker = new Pikaday({ field: this.$refs.input, format: 'YYYY-MM-DD' }) this.$once('hook:beforeDestroy', function () { picker.destroy() })} 阅读全文
摘要:
设置input输入框禁用 一、 readonly unselectable='on' 二、 disabled 三、 onfocus="this.blur()" 不要高亮的焦点框 outline:none; 设置input输入框自动获取焦点可以采用autofocus属性。 设置input输入框自动获取 阅读全文
摘要:
把一个变量的值赋值给另一个变量,如果是引用类型,那么有两种方式 浅拷贝与深拷贝 浅拷贝 引用给newObj 即拷贝指针 即引用传递 本身会改变 深拷贝,创建一个新对象,内容给原来需要拷贝的对象的内容是一样的。 类似值传递(值传递是指基本数据类型) 本身不会改变 深拷贝的三种方式 第一种,利用map返 阅读全文
摘要:
downLoad: downLoadUrl => { let a = document.createElement('a') if (a.download) { a.href = downLoadUrl if (document.createEvent) { var evObj = document 阅读全文
摘要:
setCookie: (name, value) => { const Days = 0.5 const exp = new Date() exp.setTime(exp.getTime() + Days * 24 * 60 * 60 * 1000) document.cookie = name + 阅读全文