<!DOCTYPE html> Document *{ padding: 0; margin: 0; } ....
![240](https://cdn2.jianshu.io/assets/default_avatar/4-3397163ecdb3855a0a4139c34a695885.jpg?imageMogr2/auto-orient/strip|imageView2/1/w/240/h/240)
IP屬地:江蘇
str.chartAT() 查找字符串某個位置上的元素 str.replace() 字符串替換 str.index.of() 字符串是否存在某一個元素 (從前往后) str....
arr.push(1) 末尾添加元素 arr.pop() 刪除數(shù)組最后一個元素 arr.unshift(2) 數(shù)組前面添加新元素 arr.shift() 刪除數(shù)組第一個元素...
functionsetCookie(key,val,expires){ letnow=newDate() now.setDate(now.getDate()+expires)...
document.getElementById document.getElementsByClassName document.getElements...
functionrnd(max,min=0){ returnMath.round(Math.random()*(max-min))+min } /cons...