javascript 如何从日期字符串中删除时间

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/28516176/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-10-28 09:06:54  来源:igfitidea点击:

How can remove time from Date string

javascript

提问by Momo

var x = new Date();
myVar = x.toString();
document.write(myVar);
// Sat Feb 14 2015 14:20:58 GMT+0100 (CET)

I want to remove the time <<14:20:58 GMT+0100 (CET)>>

我想删除时间 <<14:20:58 GMT+0100 (CET)>>

回答by rfornal

Try ...

尝试 ...

var x = new Date()
var myVar = x.toDateString(); 

This will only provide the date ...

这只会提供日期...

Documentation: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toDateString

文档:https: //developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toDateString