即使相当不错,我也面临着一个问题。如何简单地获取时区日期?
在IOS应用程序上,我需要从timeZone获取日期,但与我的应用程序运行的系统无关。
基本上,如果我的应用程序在美国使用,我希望能够实时获得“欧洲/巴黎”的日期()。
是否可以使用Moment Timezone?
// This line is giving me the smartphone's system date
var today = moment().tz('Europe/Paris');
console.log(today.format());
// This line is giving
var dateInCST; //Getting CST date as input.
/*Triming the time part and retaining only the date.*/
var onlyDateInCST = new Date(dateInCST.getUTCFullYear(), dateInCST.getUTCMonth(), dateInCST.getUTCDate());
console.log(onlyDateInCST);
我在+5点30分。
在日期创建期间,通过提供年份、月份和日期,节点js将其视为IST,并自动推
我需要将jquery datepicker中currentText属性的默认显示从"Today“更改为"Today: 9月14日,2012”。所以问题是,datepicker是否通过某种方法公开了今天的日期?或者我必须创建我自己的JS new Date()并从那里获取日期,这是我试图避免的!
$('#txtSelectedDate').datepicker({
showButtonPanel: true,
currentText: "Today: " + getTodaysDate(); // Is there s