nrm ls 查看源镜像 nrm add 自定义名称 源地址 nrm use 自定义名称 Read More
题目为 : 写一个模块,外部调用这个模块,请求参数是时间戳,模块要求 今天的时间,统一用24小时写作 03:00、15:04 昨天的时间,统一写昨天 昨天之前的时间,但在本周之内的时间,统一用周一、周二、周三这样来写 上周的时间,统一协作15/3/4,依次是年/月/日 注意当月和日是个位数的时候,不 Read More
[1, 2, 3, 4, 5, 7, 8] [1, 1, 2, 2, 3, 3, 4, 4, 5, 7, 8, 7] Read More
因为vue里面的data是用get赋值的,所以无法用delete, 这时你可以用Object.defineProperty() Read More
```
var a = {name:'hehe',age:10}; qs.stringify(a)
// 'name=hehe&age=10'
JSON.stringify(a)
// '{"name":"hehe","age":10}' var a = '{name:"hehe",age:10}'; qs.parse(a)
//{ '{name:"hehe",age:10}': '' }
. Read More
浏览历史记录window.history,不会刷新页面内容,只会更改历史记录,用location.href 才会刷新 1. history.pushState() & history.replaceState() pushState()和replaceState()参数一样,参数说明如下: 1、st Read More
在严格版中的默认的this不再是window,而是undefined。 先看两个例子 example one example two 知识点一:this的指向在函数定义的时候是确定不了的,只有函数执行的时候才能确定this到底指向谁,实际上this的最终指向的是那个调用它的对象 知识点二:当this Read More
colspan 是合并列,rowspan是合并行,合并行的时候,比如rowspan="2",它的下一行tr会少一列;合并列的时候 colspan="2",此行的列会少一列 效果 css3斜线表头 Read More
` ` Read More
cmd进入命令行工具 Read More