window.history 返回history对象的引用 window.history.forword() / back():网页前进/后退 ...
setTimeout(function(){},1000) 设置的时间间隔延迟稍长,var timeId=setTimeout; console...
Math 1、写一个函数,返回从min到max之间的 随机整数,包括min不包括max 2、写一个函数,返回从min都max之间的 随机整数,包...
http://js.jirengu.com/laxovehajo/1/edit?html,css,output
1.transform相关属性 transform: rotate(60deg) 旋转60度 正值顺时针旋转 负值逆时针旋转 transform...
题目1: DOM0 事件和DOM2级在事件监听使用方式上有什么区别? DOM0级事件监听就是把一个方法赋值给一个元素的事件处理程序属性。将这些属...
题1 http://js.jirengu.com/fexeporiro/1/edit?html,css,output题2 http://js....
题目1: dom对象的innerText和innerHTML有什么区别? innerText是一个可写属性,返回元素内保函的文本内容,再多层次的...
题目1: \d,\w,\s,a-zA-Z0-9,\b,.,*,+,?,x{3},^,$分别是什么? \d: 表示匹配所有的数字字符。 \w: 表...