在触屏设备下,要判断是单指还是多指操作,可以通过event.touches数组对象的长度判断 例如: document.addEventListener('touchstart',function(event){ var touches = event.touches; if(touches.len ...
分类:
移动开发 时间:
2020-07-10 11:41:37
阅读次数:
129
1 function errorCheck() { 2 window.addEventListener('error',function(error){ 3 if(error.filename){return false;}else{ 4 console.log(error.target+"资源加载 ...
分类:
其他好文 时间:
2020-07-08 10:31:15
阅读次数:
77
一.首先介绍两者的用法: 1.on的用法:以onclick为例 第一种: obj.onclick = function(){ //do something.. } 第二种: obj.onclick= fn; function fn (){ //do something... } 第三种:当函数fn有 ...
分类:
编程语言 时间:
2020-07-06 13:14:45
阅读次数:
56
function addEventListener(element,eventName,fn){ //判断当前浏览器是否能支持 addEventListener 方法,ie9以下不支持 if(element.addEventListener){ element.addEventListener(ev ...
分类:
其他好文 时间:
2020-07-04 22:36:58
阅读次数:
73
加载单个js脚本 var loadSingleScript = function (src, callback) { var s = document.createElement('script'); s.async = false; s.src = src; s.addEventListener( ...
分类:
Web程序 时间:
2020-07-03 10:30:28
阅读次数:
68
//设置剪切板内容document.addEventListener("copy",function () { if (event.clipboardData || event.originalEvent) { var clipboardData = (event.clipboardData || ...
分类:
Web程序 时间:
2020-07-02 18:02:04
阅读次数:
100
位置属性 window.addEventListener('mouseout', (e) => { // e 为鼠标事件 console.log(e); }) 属性 含义 clientX、clientY 鼠标位置距离当前body可视区域的x,y坐标 pageX、pageY 鼠标位置距离当前整个bod ...
分类:
编程语言 时间:
2020-06-27 19:49:16
阅读次数:
60
<!DOCTYPE html> <style> html,body {height:100%;} body {margin:0px;} div {height:100%;} </style> <body> <script> addEventListener("DOMContentLoaded",fu ...
分类:
Web程序 时间:
2020-06-27 11:24:00
阅读次数:
121
1. 首先,要想接收从其他的窗口发过来的消息,就必须对窗口对象的message事件进行监听,如下代码: window.addEventListener(“message”, function(){},false); 2. 其次,需要使用window对象的postMessage方法向其他窗口发送消息, ...
分类:
Web程序 时间:
2020-06-25 19:48:14
阅读次数:
79
window.addEventListener('scroll', function () { var top = $(window).scrollTop(); this.btnShow = top < 2500 console.log(this.btnShow) }); function中的内容, ...
分类:
其他好文 时间:
2020-06-24 20:06:43
阅读次数:
61