js 闭包案例 12345678910111213141516171819<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title></head><body> <s javascript #js #javascript
js 页面滚动 window.scrollTo(); 语法1: window.scrollTo(x,y); x 是文档中的横轴坐标。 y 是文档中的纵轴坐标。 例子: window.scrollTo(0,1000); // 垂直滚动到1000的位置 语法2: window.scrollTo({object}); top 等同于 y le javascript #js #javascript
js 验证码的倒计时,防刷新 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172<!DOCTYPE html><html lang="en"><head> javascript #js #javascript
js 鼠标滚动效果:图片放大缩小 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162<!DOCTYPE html><html lang="en"><head> <meta charse javascript #js #javascript
js中对数组.map()、some()、every()、find()、filter()、reduce()的使用 every()用于判断数组所有元素是否都符合函数返回的条件 12345678910111213141516171819<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title> javascript #js #javascript
js中提供的浏览器的对象 BOM 123456789101112131415161718192021<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=d javascript #js #javascript
js判断当前浏览器是什么浏览器 1234567891011121314151617181920212223242526272829303132333435363738console.log(navigator)const explorer = navigator.userAgent;var Browser;// IE 判断浏览器是否支持ActiveX控件,如果浏览器支持ActiveX控件可以利用,if (!!window.Ac javascript #js #javascript
js 判断首次加载和刷新 1234567891011// console.log(performance);switch (performance.navigation.type) { case 0: console.log("首次加载出来了"); break; case 1: console.log("页面刷新完了"); break; javascript #js #javascript
js区分浏览器关闭 or 刷新 js浏览器关闭 or 刷新 12345678910111213141516171819202122232425262728293031323334<!DOCTYPE html><html><head> <meta charset="utf-8"> <title>浏览器关闭 or 刷新</title>< javascript #js #javascript