easyUI日期控件获值和赋值
Posted 幽默是一种心情
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了easyUI日期控件获值和赋值相关的知识,希望对你有一定的参考价值。
一,获值
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日期控件获值和赋值的主要内容,如果未能解决你的问题,请参考以下文章