帮助!我是Javascript的新手,我需要创建一个以这种格式显示当前日期和时间的程序: 当前日期:2013年11月16日(全名格式) 当前时间:hh:mm:ss PM(带AM / PM的12小时时钟格式)
我正在为朋友建立一个网页,我有点失落:/我非常感谢任何帮助。谢谢!
答案 0 :(得分:0)
您可以使用方法日期获取当前日期new Date()
,然后使用一些if else块来更改其可见性。
基本代码为
var date = "Date is: ";
var newDate = new Date(); // get the method
date += (newDate.getMonth() + 1) + "/"; // add 1 to the result and a backslash
date += newDate.getDate() + "/"; // get today's date and a backslash
date += newDate.getFullYear(); // get the full year (2013)
document.write(date); // write this to the document
您可以添加一些If else块作为
if(month == "1") {
month = "January";
}
您需要使用API并设计样式,没有API可以为您完成所有事情。您需要添加一些代码才能使它适合您!
祝你好运。