发表于: 2016-05-07 10:10:26
0 2138
1 今天完成的事情
task1
2 明天要做的事情
开始做task2
3 遇到的问题
使用JS语句还得翻笔记不然想不起来,对JS太不熟悉了
4 收获:
A:setInterval() 方法可按照指定的周期(以毫秒计)来调用函数或计算表达式。
setInterval(code,millisec[,"lang"])
B:Document 对象方法
getElementById() 返回对拥有指定 id 的第一个对象的引用。
getElementsByName() 返回带有指定名称的对象集合。
getElementsByTagName() 返回带有指定标签名的对象集合。
C:使用Math.floor与Math.random取随机整数的方法
Math.floor() 小于等于 x,且与 x 最接近的整数。
Math.floor() *2 0~2之间的随机数
Math.floor(Math.random()*5) 0~5之间的整数
D:js调试工具Console命令
评论