摘要:
创建数组 let arr = []; let arr = new Array(1,2,5); let arr = Array.from([1,2,3],item=>item+2); //[3,4,5] let arr = arr1.concat(arr2,arr3); //返回新数组,concat 阅读全文
摘要:
创建对象let obj = {}; let obj = new Object(); let obj = Object.create(null); //不能不传值,null表示空值 let obj = Object.assign(obj1, obj2, obj3); // **操作obj1对象。** 阅读全文
摘要:
<style> .showTotal{ width: 100%; //must set overflow: auto; } .outter{ width: 98%; min-width: 60vw; height: auto; overflow: auto; display: flex; flex- 阅读全文
摘要:
一个函数在执行过程中,产生了外部可观察的变化,那么就说这个函数是有副作用的。 阅读全文
摘要:
div{ transform: rotate(45deg); transform-origin:20% 40%; } //2D 转换元素能够改变元素 x 和 y 轴。3D 转换元素还能改变其 Z 轴。 //默认值: 50% 50% 0 阅读全文
摘要:
<keep-alive include="a,b"> <component :is="view"></component> </keep-alive> <keep-alive :include="['a', 'b']"> <component :is="view"></component> </ke 阅读全文
摘要:
li { text-align: center; } p { display: inline-block; text-align: left; } 利用行内元素特性。 /*display: inline-block使P的宽度根据文字的宽度伸缩 */ 阅读全文
摘要:
<html><head></head><body> <div id="show"> </div> <button onclick="save()">存值</button> <button onclick="get()">取值</button> <button onclick="remove()">删 阅读全文
摘要:
<div id="show"></div> <script type="text/javascript"> let show = document.getElementById('show'); function addShow(e){ show.innerHTML += e; return con 阅读全文
摘要:
const target = { a: 1, b: 2 }; const source = { b: 4, c: 5 }; const returnedTarget = Object.assign(target, source); console.log(target); // expected o 阅读全文