1、Android路径图
链接:http://pan.baidu.com/s/1mhjqV4s 密码:loms
2、iOS路径图
链接:http://pan.baidu.com/s/1jHc93Ie 密码:4liq
3、Cocos2d-x路径图
链接:http://pan.baidu.com/s/1nux2gqP 密码:4tin
4、HTML5路径图
链接:http://pan.baidu.com/s/1hr0ZQRU 密码:ozfg
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>日历控件</title>
<script src="js/new_file.js" defer></script>
</head>
<body>
<input id="calendar" type="text" />
</body>
</html>
var days = new Array("日","一","二","三","四","五","六");//星期
var today = new Date();//当天日期,备用
...