大牛手把手教你做web版日历(建议你看看,你会有收获的)

本文提供了一个web版日历的制作教程,通过详细的步骤指导,帮助读者掌握创建日历的功能。下载地址:http://download.csdn.net/detail/cometwo/9373082。
摘要由CSDN通过智能技术生成

这里写图片描述

下载地址:http://download.csdn.net/detail/cometwo/9373082

 <!DOCTYPE html>
<html>

    <head>
        <meta charset="utf-8" />
        <title>示例</title>
        <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
        <script type="text/javascript">
            $(function(){
     
                var flag=1;
                $('table td').click(function(){
     
                    if(flag==1){
                        $(this).addClass('AAA');
                        flag=0;
                        alert('你点击的是'+$(this).text()+"     此时的已经flag是:"+flag) ;
                    }else{
                        $('table td').removeClass('AAA');
                        flag=1;
                         alert('你点击的是'+$(this).text()+"    此时的已经flag是:"+flag) ;
                    }
                })
            })
        </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();
				},
				//设置默认属
  • 0
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值