当前位置:首页
> 第15页
HTTP协议类
HTTP协议的主要特点 1,简单快速,每个资源是固定的,通过固定url就可以了 2,灵活 head有数据类型,一个HTTP协议可以完成不同数据类型的传输 3,无连接&nb...
js类型转换
数据类型: 原始类型: Boolean Null Undefined Number String Symbol 显示类型转换: ...
DOM事件
1,事件级别 DOM0-dom.onclick=fun DOM2-dom.addEventListener('click',fun,false) ...
小程序 bind与catch 区别
bind和catch后可以紧跟一个冒号,+事件分类例如:写法:1,bindtap="函数名"2,bind:tap="函数名" 这里这个tap可以换成需要的事件 双击,单击,滑动之类的bind是带有冒泡的catch不带有冒泡...
vue-router 路由几种模式,分别什么用法
vue-router 默认 hash 模式 . http://music.163.com/#/friend还有一种是history模式。 http://music.163.com/friendhash模式背后的原理是onhashchange事件,...
vue-router 路由几种模式,分别什么用法
vue-router 默认 hash 模式 . http://music.163.com/#/friend还有一种是history模式。 http://music.163.com/friendhash模式背后的原理是onhashchange事件,...
es6 promise
1,promise中then的使用function runAsync1(){ var p=new Promise(function(resolve,reject){ &nb...
数组api
1,forEachvar arr=[1,2,3];arr.forEach(function(item,index){ consoel.log(index,item)})2,every 判断所有元素都满足一个条件var arr=[1,2,3,4,5]var result=arr.every...