zoukankan      html  css  js  c++  java
  • Easyui的DateBox日期格式化

    DateBox 日期显示默认的格式为“dd/mm/yyyy”,如果想自定义成我们的格式需要实现两个函数,formatter和parser。 

    formatter函数使得选择日期后将其格式化为我们需要的格式,parser函数在选择好日期后告诉控件如何去解析我们自定义的格式。 

    定义如下: 
    formatter:A function to format the date, the function take a 'date' parameter and return a string value. 
    parser:A function to parse a date string, the function take a 'date' string and return a date value. 

    如将日期格式化为yyyy-mm-dd的格式: 

    $("#dd").datebox({
                    required: "true",
                    formatter: function(date){ return date.getDate()+'/'+(date.getMonth()+1)+'/'+date.getFullYear();},
                    parser: function(date){ return date.getDate()+'/'+(date.getMonth()+1)+'/'+date.getFullYear();}
                });
  • 相关阅读:
    NIO学习
    XML(二)
    IO和NIO
    Log4j
    异常处理机制
    XML
    数据交互
    分页实现的三种方式
    Idea破解
    数据库连接池
  • 原文地址:https://www.cnblogs.com/cw_volcano/p/2580576.html
Copyright © 2011-2022 走看看