var GetQueryString =function(name) { var reg =new RegExp("(^|&)" + name +"=([^&]*)(&|$)...
var GetQueryString =function(name) { var reg =new RegExp("(^|&)" + name +"=([^&]*)(&|$)...
vue在观察到数据变化时并不是直接更新Dom,而是开启一个队列,并缓冲在同一事件循环中发生的所有数据改变。在缓冲中会去除重复数据,从而避免不必要的计算和dom操作。 然后,在...
js: var startTime=new Date("2018/09/07 12:00:00"); var nowTime=new Date(); if(nowTime.g...
var array = [ {label:'山东省', value:'370000'}, {label:'吉林省', value:'220000'}, {label:'湖南省...
1.animation兼容: .btn { animation: bounce 2.1s 0.3s ease both infinite; -webk...
html 要复制的内容 复制按钮 js var copy=function(){ if (wb.ua.isIOS) {//区分iPhone设备 var text ...
在js中进行传参,由于包含中文,所以需要经过两次encodeURI()编码和两次decodeURI()解码 a.html跳转b.html传中文参数: a.html: html...
js 获取字符串中最后一个斜杠后面的内容: var str = "/asdasf/asfaewf/agaegr/trer/rhh"; var index = str .las...
css:{ overflow: auto; overflow-scrolling: touch; -webkit-overflow-scrolling: touc...
$(".help").click(function(e){ if(e.target==this){ $(".help").hide(); } })
1.vue索引值使用 2.v-for遍历一个对象 {{v}} obj={ "a":1, "b":2 } // 1,2 提供第二个参数获取键值 {{k}}:{{v}} ...
https://npm.taobao.org/
module: { rules: [{ test: /\.(html|php)$/, loader: 'html-loader' //处理图片 } ] }; 使用html-l...
使用: cookieUtil.set(key,value,' ', '/'); 引入jquery.cookie.js var cookieUtil={ set :func...
::-webkit-input-placeholder { /* WebKit browsers */ color: #c6c6c6; } :-moz-placeholde...
引入公共js文件: html: js: var player =new SVGA.Player('#demoCanvas'); var parser =new SVGA.Pa...
html: 使用angular加载元素 css: 使video播放实现旋转效果 @-webkit-keyframes changehovertree{0%{-webkit-t...
window.addEventListener("scroll",function(e){ var t =document.documentElement.scrollTop...
var aObj={ 'a':1, 'b':2 }; var bObj={}; for(i in aObj){ bObj[i]=aObj[i]; } bObj.c...