摘要:
css常用属性介绍 opacity:1;设置元素的不透明度 transfrom:设置元素运动 overflow:当内容溢出元素框发生的事情 box-sizing:允许以特定的方式定义某个区域的特定元素(content-box默认)(border-box) vertical-align:设置元素的垂直 阅读全文
摘要:
/ 字符串 / let str="string" str.includes("c")) //判断字符串是否包含“c”,是返回true,否者返回false str.startWith("str") //判断字符串是否以“str”开头,是返回true,否者返回false str.endWith("ng" 阅读全文
摘要:
VUEX 的核心概念 1 、State (常用);2、Getters ;3、Mutations(常用);4、Actions ;5、Modules; 1。State是唯一的数据源,单一的状态树 const Couter={ template:`<div>{{count}}</div>`, comput 阅读全文
摘要:
阅读全文
摘要:
※ ;选择所有元素div,p ; 选择所有div元素和p元素div p ;选择div内部所有p元素div>p;选择父元素为div的所有p元素div+p;选择紧接在div元素之后的所有p元素[target];选择带有target属性的所有元素[target=_blank];选择target=_blan 阅读全文