摘要:
var e = new Error("this is a Error"); console.log(typeof(e),e); thorw( e );//抛出错误 //容错 try{ //尝试执行try里面的代码 var a; console.log(a); }catch(e){ //参数e,表示错误 //如果try中代码出错,则执行catch里的代码 alert(e.message);... 阅读全文
摘要:
function createFn(name){ this.name = name ; } createFn.prototype.study = function(){ return this.name+"在学习";; } var createFn2 = new createFn("tom"); alert(creat... 阅读全文
摘要:
运动原理:通过定时器持续改变某元素的属性。匀速运动:每一次更改属性时,步长值是相同的。1,注意css属性为数值的,才能够进行运动。比如width、height、font-size、left、top等。2,如果属性是left、top这种,需要有position才能进行运动。3,很多时候,第一次获取属性 阅读全文
摘要:
/* * elem: 操作哪一个元素 * json:表示多个属性 * attr: 操作的那个元素的css中的什么属性 * value: 操作的那个元素的css中的那个属性的目标值 * cb:回调函数,前一个运动执行后,这一段代码才被执行 */ var startMove = (elem, json, cb)=>{ // 每当执行运动函数的时候... 阅读全文
摘要:
1 2 3 4 5 6 25 26 56 57 58 59 60 61 阅读全文
摘要:
1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 你喜欢什么运动? 全选/全不选 10 10 篮球 11 11 足球 12 12 羽毛球 13 13 排球 14 14 ... 阅读全文
摘要:
查询body的方法 查询html的方法 查询所有元素 查询元素 根据class名 按css样式来查询 查询name属性 阅读全文