淺談如何?easyui的datebox格式化,淺談easyuidatebox

來源:互聯網
上載者:User

淺談如何?easyui的datebox格式化,淺談easyuidatebox

看了網上有很多的解決方案,我也寫一個比較簡單方法。實現easyui的datebox格式化。效果如下,用“++”隔開,看你喜歡用什麼都可以。

 

1、html

<span class="span1">證件有效期間至:</span> <span><input id="passvali" name="hotel.passvali"></span> 

2、js

/* 證件有效期間至 */ $('#passvali').datebox({ formatter: function(date){  var years=date.getFullYear();//擷取年 var months=date.getMonth()+1;//擷取日 var dates=date.getDate();//擷取月  if(months<10){//當月份不滿10的時候前面補0,例如09 months='0'+months; }  if(dates<10){//當日期不滿10的時候前面補0,例如09 dates='0'+dates; } return years+"++"+months+"++"+dates;//根據自己需求進行改動 } });

補充:

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的格式:

$('#dd1').datebox({  formatter: function(date){ return date.getFullYear()+'-'+(date.getMonth()+1)+'-'+date.getDate();},  parser: function(date){ return new Date(Date.parse(date.replace(/-/g,"/")));}});

以上就是為大家分享的easyui的datebox格式化最簡單方法,希望對大家的學習有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.