我想知道如何在jQuery中使用Date()函数以yyyy/mm/dd
格式获取当前日期。
答案 0 :(得分:299)
Date()
不是jQuery
的一部分,它是JavaScript的功能之一。
请参阅the documentation on Date object。
你可以这样做:
var d = new Date();
var month = d.getMonth()+1;
var day = d.getDate();
var output = d.getFullYear() + '/' +
(month<10 ? '0' : '') + month + '/' +
(day<10 ? '0' : '') + day;
请参阅this jsfiddle以获取证明。
代码可能看起来很复杂,因为它必须处理几个月和几个月。天数由小于10
的数字表示(意味着字符串将有一个字符而不是两个字符)。请参阅this jsfiddle进行比较。
答案 1 :(得分:122)
如果你有jQuery UI(datepicker需要),这就可以解决问题:
$.datepicker.formatDate('yy/mm/dd', new Date());
答案 2 :(得分:34)
jQuery是JavaScript。使用Javascript Date
对象。
var d = new Date();
var strDate = d.getFullYear() + "/" + (d.getMonth()+1) + "/" + d.getDate();
答案 3 :(得分:29)
使用纯Javascript你可以prototype your own YYYYMMDD format;
Date.prototype.yyyymmdd = function() {
var yyyy = this.getFullYear().toString();
var mm = (this.getMonth()+1).toString(); // getMonth() is zero-based
var dd = this.getDate().toString();
return yyyy + "/" + (mm[1]?mm:"0"+mm[0]) + "/" + (dd[1]?dd:"0"+dd[0]); // padding
};
var date = new Date();
console.log( date.yyyymmdd() ); // Assuming you have an open console
答案 4 :(得分:18)
在JavaScript中,您可以使用Date对象获取当前日期和时间;
var now = new Date();
这将获得本地客户端机器时间
jquery LINK
的示例如果您使用的是jQuery DatePicker,则可以在任何类似的文本字段中应用它:
$( "#datepicker" ).datepicker({dateFormat:"yy/mm/dd"}).datepicker("setDate",new Date());
答案 5 :(得分:14)
由于问题被标记为JQuery
:
如果您还在使用JQuery UI
,则可以使用$.datepicker.formatDate()
:
$.datepicker.formatDate('yy/mm/dd', new Date());
请参阅this演示。
答案 6 :(得分:13)
function GetTodayDate() {
var tdate = new Date();
var dd = tdate.getDate(); //yields day
var MM = tdate.getMonth(); //yields month
var yyyy = tdate.getFullYear(); //yields year
var currentDate= dd + "-" +( MM+1) + "-" + yyyy;
return currentDate;
}
使用它非常方便,享受
答案 7 :(得分:9)
请参阅this
$.now()
方法是表达式(new Date).getTime()
返回的数字的简写。
答案 8 :(得分:7)
这是方法top获取当前日,年或月
new Date().getDate() // Get the day as a number (1-31)
new Date().getDay() // Get the weekday as a number (0-6)
new Date().getFullYear() // Get the four digit year (yyyy)
new Date().getHours() // Get the hour (0-23)
new Date().getMilliseconds() // Get the milliseconds (0-999)
new Date().getMinutes() // Get the minutes (0-59)
new Date().getMonth() // Get the month (0-11)
new Date().getSeconds() // Get the seconds (0-59)
new Date().getTime() // Get the time (milliseconds since January 1, 1970)
答案 9 :(得分:6)
//convert month to 2 digits<p>
var twoDigitMonth = ((fullDate.getMonth().length+1) === 1)? (fullDate.getMonth()+1) : '0' + (fullDate.getMonth()+1);
var currentDate = fullDate.getFullYear()+ "/" + twoDigitMonth + "/" + fullDate.getDate();
console.log(currentDate);<br>
//2011/05/19
答案 10 :(得分:5)
Moment.js让事情变得非常简单:
moment().format("YYYY/MM/DD")
答案 11 :(得分:5)
当元素只有一个符号时,此对象设置为零:
function addZero(i) {
if (i < 10) {
i = "0" + i;
}
return i;
}
此对象设置实际的全职时间,小时和日期:
function getActualFullDate() {
var d = new Date();
var day = addZero(d.getDate());
var month = addZero(d.getMonth()+1);
var year = addZero(d.getFullYear());
var h = addZero(d.getHours());
var m = addZero(d.getMinutes());
var s = addZero(d.getSeconds());
return day + ". " + month + ". " + year + " (" + h + ":" + m + ")";
}
function getActualHour() {
var d = new Date();
var h = addZero(d.getHours());
var m = addZero(d.getMinutes());
var s = addZero(d.getSeconds());
return h + ":" + m + ":" + s;
}
function getActualDate() {
var d = new Date();
var day = addZero(d.getDate());
var month = addZero(d.getMonth()+1);
var year = addZero(d.getFullYear());
return day + ". " + month + ". " + year;
}
<强> HTML:强>
<span id='full'>a</span>
<br>
<span id='hour'>b</span>
<br>
<span id='date'>c</span>
JQUERY VIEW:
$(document).ready(function(){
$("#full").html(getActualFullDate());
$("#hour").html(getActualHour());
$("#date").html(getActualDate());
});
答案 12 :(得分:4)
您也可以使用moment.js实现此目的。 在你的html中包含moment.js。
<script src="moment.js"></script>
并在脚本文件中使用以下代码来获取格式化日期。
moment(new Date(),"YYYY-MM-DD").utcOffset(0, true).format();
答案 13 :(得分:3)
仅供参考 - getDay()将为您提供星期几...即:如果今天是星期四,它将返回4号(一周中的第4天)。
要获得适当的一天,请使用getDate()。
我的下面示例...(也是一个字符串填充函数,在单个时间元素上给出前导0。(例如:10:4:34 =&gt; 10:04:35)
function strpad00(s)
{
s = s + '';
if (s.length === 1) s = '0'+s;
return s;
}
var currentdate = new Date();
var datetime = currentdate.getDate()
+ "/" + strpad00((currentdate.getMonth()+1))
+ "/" + currentdate.getFullYear()
+ " @ "
+ currentdate.getHours() + ":"
+ strpad00(currentdate.getMinutes()) + ":"
+ strpad00(currentdate.getSeconds());
示例输出:31/12/2013 @ 10:07:49
如果使用getDay(),输出将 4 / 12/2013 @ 10:07:49 < / p>
答案 14 :(得分:3)
试试这个......
var d = new Date();
alert(d.getFullYear()+'/'+(d.getMonth()+1)+'/'+d.getDate());
getMonth()返回0到11个月,所以我们想为正确的月份添加1
答案 15 :(得分:2)
console.log($.datepicker.formatDate('yy/mm/dd', new Date()));
答案 16 :(得分:2)
jQuery plugin page已关闭。所以手动:
function strpad00(s)
{
s = s + '';
if (s.length === 1) s = '0'+s;
return s;
}
var now = new Date();
var currentDate = now.getFullYear()+ "/" + strpad00(now.getMonth()+1) + "/" + strpad00(now.getDate());
console.log(currentDate );
答案 17 :(得分:1)
你可以这样做:
var now = new Date();
dateFormat(now, "dddd, mmmm dS, yyyy, h:MM:ss TT");
// Saturday, June 9th, 2007, 5:46:21 PM
或类似
var dateObj = new Date();
var month = dateObj.getUTCMonth();
var day = dateObj.getUTCDate();
var year = dateObj.getUTCFullYear();
var newdate = month + "/" + day + "/" + year;
alert(newdate);
答案 18 :(得分:1)
您可以使用此代码:
var nowDate = new Date();
var nowDay = ((nowDate.getDate().toString().length) == 1) ? '0'+(nowDate.getDate()) : (nowDate.getDate());
var nowMonth = ((nowDate.getMonth().toString().length) == 1) ? '0'+(nowDate.getMonth()+1) : (nowDate.getMonth()+1);
var nowYear = nowDate.getFullYear();
var formatDate = nowDay + "." + nowMonth + "." + nowYear;
您可以找到有效的演示here
答案 19 :(得分:1)
var d = new Date();
var today = d.getFullYear() + '/' + ('0'+(d.getMonth()+1)).slice(-2) + '/' + ('0'+d.getDate()).slice(-2);
答案 20 :(得分:1)
这是我仅使用jQuery提出的。这只是将各个部分放在一起的问题。
//Gather date information from local system
var ThisMonth = new Date().getMonth() + 1;
var ThisDay = new Date().getDate();
var ThisYear = new Date().getFullYear();
var ThisDate = ThisMonth.toString() + "/" + ThisDay.toString() + "/" + ThisYear.toString();
//Gather time information from local system
var ThisHour = new Date().getHours();
var ThisMinute = new Date().getMinutes();
var ThisTime = ThisHour.toString() + ":" + ThisMinute.toString();
//Concatenate date and time for date-time stamp
var ThisDateTime = ThisDate + " " + ThisTime;
答案 21 :(得分:1)
您可以向javascript添加扩展方法。
Date.prototype.today = function () {
return ((this.getDate() < 10) ? "0" : "") + this.getDate() + "/" + (((this.getMonth() + 1) < 10) ? "0" : "") + (this.getMonth() + 1) + "/" + this.getFullYear();
}
答案 22 :(得分:0)
我只是想分享一下我用Pierre的想法制作的时间戳原型。没有足够的评论要点:(
// US common date timestamp
Date.prototype.timestamp = function() {
var yyyy = this.getFullYear().toString();
var mm = (this.getMonth()+1).toString(); // getMonth() is zero-based
var dd = this.getDate().toString();
var h = this.getHours().toString();
var m = this.getMinutes().toString();
var s = this.getSeconds().toString();
return (mm[1]?mm:"0"+mm[0]) + "/" + (dd[1]?dd:"0"+dd[0]) + "/" + yyyy + " - " + ((h > 12) ? h-12 : h) + ":" + m + ":" + s;
};
d = new Date();
var timestamp = d.timestamp();
// 10/12/2013 - 2:04:19
答案 23 :(得分:0)
var d = new Date();
var month = d.getMonth() + 1;
var day = d.getDate();
var year = d.getYear();
var today = (day<10?'0':'')+ day + '/' +(month<10?'0':'')+ month + '/' + year;
alert(today);
答案 24 :(得分:0)
使用jQuery-ui datepicker,它内置了一个方便的日期转换例程,因此您可以格式化日期:
var my_date_string = $.datepicker.formatDate( "yy-mm-dd", new Date() );
简单。
答案 25 :(得分:0)
获取当前日期格式dd/mm/yyyy
以下是代码:
var fullDate = new Date();
var twoDigitMonth = ((fullDate.getMonth().toString().length) == 1)? '0'+(fullDate.getMonth()+1) : (fullDate.getMonth()+1);
var twoDigitDate = ((fullDate.getDate().toString().length) == 1)? '0'+(fullDate.getDate()) : (fullDate.getDate());
var currentDate = twoDigitDate + "/" + twoDigitMonth + "/" + fullDate.getFullYear();
alert(currentDate);
答案 26 :(得分:0)
function createDate() {
var date = new Date(),
yr = date.getFullYear(),
month = date.getMonth()+1,
day = date.getDate(),
todayDate = yr + '-' + month + '-' + day;
console.log("Today date is :" + todayDate);
答案 27 :(得分:0)
这将为您提供当前日期字符串
var today = new Date().toISOString().split('T')[0];
答案 28 :(得分:0)
我知道我来晚了,但这就是你所需要的
var date = (new Date()).toISOString().split('T')[0];
toISOString()使用javascript的内置函数。
cd = (new Date()).toISOString().split('T')[0];
console.log(cd);
alert(cd);
答案 29 :(得分:-1)
function returnCurrentDate() {
var twoDigitMonth = ((fullDate.getMonth().toString().length) == 1) ? '0' + (fullDate.getMonth() + 1) : (fullDate.getMonth() + 1);
var twoDigitDate = ((fullDate.getDate().toString().length) == 1) ? '0' + (fullDate.getDate()) : (fullDate.getDate());
var currentDate = twoDigitDate + "/" + twoDigitMonth + "/" + fullDate.getFullYear();
return currentDate;
}