如题

解决方案 »

  1.   

    function returnDate() //根据日期格式等返回用户选定的日期
    {
        if(WebCalendar.objExport)
        {
            var returnValue;
            var a = (arguments.length==0) ? WebCalendar.day[this.id.substr(8)].split("/") : arguments[0].split("/");
            var d = WebCalendar.format.match(/^(\w{4})(-|\/|.|)(\w{1,2})\2(\w{1,2})$/);
            if(d==null){alert("你设定的日期输出格式不对!\r\n\r\n请重新定义 WebCalendar.format !"); return false;}
            var flag = d[3].length==2 || d[4].length==2; //判断返回的日期格式是否要补零
            returnValue = flag ? a[2] +d[2]+ appendZero(a[1]) +d[2]+ appendZero(a[0]) : a[2] +d[2]+ a[1] +d[2]+ a[0];
            if(WebCalendar.timeShow)
            {
                var h = new Date().getHours(), m = new Date().getMinutes(), s = new Date().getSeconds();
                returnValue += flag ? " "+ appendZero(h) +":"+ appendZero(m) +":"+ appendZero(s) : " "+  h  +":"+ m +":"+ s;
            }
            if(returnValue < queryDate){
                alert(returnValue.replace(/-/,"年").replace(/-/,"月").replace(/$/,"日") + "的饭早吃过了!");
                return ;
            }
            else{
                WebCalendar.objExport.value = returnValue;
                hiddenCalendar();
            }
        }
    }
      

  2.   

    梅子老大你改的不行啊,报queryDate没又定义....