手把手教你做html日历

分享一下我老师大神的人工智能教程!零基础,通俗易懂!http://blog.csdn.net/jiangjunshow也欢迎大家转载本篇文章。分享知识,造福人民,实现我们中华民族伟大复兴!                &a
摘要由CSDN通过智能技术生成

分享一下我老师大神的人工智能教程!零基础,通俗易懂!http://blog.csdn.net/jiangjunshow

也欢迎大家转载本篇文章。分享知识,造福人民,实现我们中华民族伟大复兴!

                       

这里写图片描述

废话少说,直接上代码:

<!DOCTYPE html><html>    <head>        <meta charset="utf-8" />        <title>示例</title>        <script type="text/javascript" src="js/jquery-1.9.1.min.js" ></script>    </head>    <body>        <script type="text/javascript">            var $$ = function(id) {
         return "string" == typeof id ? document.getElementById(id) : id;   };   var Class = {    create: function() {
          return function() {
           this.initialize.apply(this, arguments);     }    }   }   Object.extend = function(destination, source) {
         for (var property in source) {     destination[property] = source[property];    }    return destination;   }   var Calendar = Class.create();   Calendar.prototype = {    initialize: function(container, options) {
          this.Container = $$(container); //容器(table结构)     this.Days = []; //日期对象列表     this.SetOptions(options);     this.Year = this.options.Year;     this.Month = this.options.Month;     this.SelectDay = this.options.SelectDay ? new Date(this.options.SelectDay) : null;     this.onSelectDay = this.options.onSelectDay;     this.onToday = this.options.onToday;     this.onFinish = this.options.onFinish;     this.Draw();    },    //设置默认属性    SetOptions: function(options) {
          this.options = { //默认值      Year: new Date().getFullYear(), //显示年      Month: new Date().getMonth() + 1, //显示月      SelectDay: null, //选择日期      onSelectDay: function() {
     }, //在选择日期触发      onToday: function() {
     }, //在当天日期触发      onFinish: function() {
     } //日历画完后触发     };     Object.extend(this.options, options || {});    },    //上一个月    PreMonth: function
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值