摘要: 学习js中----今天试着写了下数字时钟。html代码如下: : : js代码如下function toDou(n) { if(n<10){ return "0"+n; }else{ return n; } } window.onload=function(){ func... 阅读全文
posted @ 2014-12-25 17:42 xiaoxiao333 阅读(621) 评论(0) 推荐(0)