摘要:
微信公众平台文档地址:https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/JS-SDK.html 1.首先要先申请一个微信公众号; 2.登录公众号后台绑定域名,配置js安全域名(不支持ip),具体如下; 登录地址:https:// 阅读全文
摘要:
这里与后端已经约定好了,成功有文件流时返回staus为0 问题:当下载文件时,axios配置responseType: ‘blob’,此时后台返回的数据会被强制转为blob类型;如果后台返回失败对象,前端也无法得知,如果按正常处理会得到名为undefined的文件。 解决:在try代码块里面尝试将a 阅读全文
摘要:
如果想要禁止整个页面滚动: document.body.addEventListener('touchmove', function(e){ e.preventDefault(); }, { passive: false }); //passive 参数不能省略,用来兼容ios和android 如果 阅读全文
摘要:
var touchScale = function() { var startX, endX, scale, x1, x2, y1, y2, imgLeft, imgTop, imgWidth, imgHeight, one = false, $touch = $(".showDiv img"), 阅读全文
摘要:
foo(str){ var temp = str.split(/[\n,]/g); for(var i =0;i<temp.length;i++){ if(temp[i] == ""){ temp.splice(i, 1); //删除数组索引位置应保持不变 i--; } } return temp 阅读全文
摘要:
<input type="text" placeholder="" onafterpaste="this.value=this.value.replace(/,/g,',')" onkeyup="this.value=this.value.replace(/,/g,',')"> 在input中加入 阅读全文
摘要:
window.onload=function(){ var videos = document.getElementsByTagName('video');//获取所有video //循环给所有video添加监听事件 当前的video开始播时 调用pauseAll 将当前播放的video的索引传值过 阅读全文
摘要:
1.首先需要安装node,npm; 2.本地新建一个文件夹(test); 3.在当前文件夹打开终端,安装express,初始化:npm init , npm install express --save ; 4.在test文件夹下新建一个server.js文件; 起服务地址默认127.0.0.1,监 阅读全文