码迷,mamicode.com
首页 > 其他好文 > 详细

easyUI日期控件获值和赋值

时间:2017-04-29 15:06:29      阅读:311      评论:0      收藏:0      [点我收藏+]

标签:com   text   string   span   当前日期   setvalue   date()   str   当前时间   

一,获值

 1.$("#id").datebox(‘getValue‘)

 2.$("input[name=‘mydate‘]").val()

参考:http://www.cnblogs.com/iyangyuan/p/3358239.html

二,赋值(赋当前时间)

//获取当前日期并格式化
function getNowFormatDate() {
  var date = new Date();
  var seperator1 = "-";
  var seperator2 = ":";
  var month = date.getMonth() + 1;
  var strDate = date.getDate();
  if (month >= 1 && month <= 9) {
       month = "0" + month;
  }
  if (strDate >= 0 && strDate <= 9) {
  strDate = "0" + strDate;
  }
  var currentdate = date.getFullYear() + seperator1 + month + seperator1 + strDate;
  return currentdate.toString();
}

 //页面初始化

 $(function () { 

    $("#PurDate").datebox(‘setValue‘, getNowFormatDate());

 });

 参考:http://www.cnblogs.com/caiyezi/p/6184013.html

 

easyUI日期控件获值和赋值

标签:com   text   string   span   当前日期   setvalue   date()   str   当前时间   

原文地址:http://www.cnblogs.com/weimingxin/p/6785093.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!