Home  >  Article  >  Web Front-end  >  6 kinds of javascript to display the current system time code_javascript skills

6 kinds of javascript to display the current system time code_javascript skills

WBOY
WBOYOriginal
2016-05-16 15:28:291526browse

The first type: javascript displays the current system time code

December 1, 2015 12:05:08 Tuesday

<div id="jnkc">

</div>

<script>setInterval("jnkc.innerHTML=new Date().toLocaleString()+' 星期'+'日一二三四五六'.charAt(new Date().getDay());",1000);

</script>

Second type: javascript displays the current system time code

2015年12月1日

<script language="JavaScript">

<!--

tmpDate = new Date();

date = tmpDate.getDate();

month= tmpDate.getMonth() + 1 ;

year= tmpDate.getYear();

document.write(year);

document.write("年");

document.write(month);

document.write("月");

document.write(date);

document.write("日");

// -->

</script>

Third type: javascript displays the current system time code

<!-- 时间代码开始 2015-12-1 星期几 -->

<SCRIPT language=JavaScript>

today=new Date();

function initArray(){

this.length=initArray.arguments.length

for(var i=0;i<this.length;i++)

this[i+1]=initArray.arguments[i]}

var d=new initArray("星期日","星期一","星期二","星期三","星期四","星期五","星期六");

document.write("<font color=#0099ff> ",today.getYear(),"年",today.getMonth()+1,"月",today.getDate(),"日 ",d[today.getDay()+1],"</font>" );

</SCRIPT>

<!-- 时间代码结束 2015-12-1 星期几 -->

The fourth method (compatible with Firefox): javascript displays the current system time code

<script language="JavaScript" type="text/javascript">

<!--

var enabled = 0; today = new Date();

var day; var date;

if(today.getDay()==0) day = " 星期日"

if(today.getDay()==1) day = " 星期一"

if(today.getDay()==2) day = " 星期二"

if(today.getDay()==3) day = " 星期三"

if(today.getDay()==4) day = " 星期四"

if(today.getDay()==5) day = " 星期五"

if(today.getDay()==6) day = " 星期六"

date = (today.getFullYear()) + "年" + (today.getMonth() + 1 ) + "月" + today.getDate() + "日" + day +"";

document.write(date);

// -->

</script>

The fifth method: javascript displays the current system time code

<script language="JavaScript">

<!--

tmpDate = new Date();

date = tmpDate.getDate();

month= tmpDate.getMonth() + 1 ;

year= tmpDate.getYear();

document.write(year);

document.write("年");

document.write(month);

document.write("月");

document.write(date);

document.write("日");

// -->

</script>

Sixth: javascript displays the current system time code

<script language="JavaScript">

var isMonth = new

Array("1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月");

var isDay = new

Array("星期日","星期一","星期二","星期三","星期四","星期五","星期六","星期日");

today = new Date () ;

Year=today.getYear();

Date=today.getDate();

if (document.all)

document.title="今天是: "+Year+"年"+isMonth[today.getMonth()]+Date+"日"+isDay[today.getDay()]

</script>

JS code to display date and time in IE title bar

You can display the time and date in the title bar of your web page. It is a very personalized function. In fact, the code is very simple, you can read it and it is easy to call.

网页标题栏显示时间

<script language="JavaScript">

var isMonth = new

Array("1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月");

var isDay = new

Array("星期日","星期一","星期二","星期三","星期四","星期五","星期六","星期日");

today = new Date () ;

Year=today.getYear();

Date=today.getDate();

if (document.all)

document.title="今天是: "+Year+"年"+isMonth[today.getMonth()]+Date+"日"+isDay[today.getDay()]

</script>

The six javascript display current system time methods provided above, which method everyone likes the most, we can carefully compare and choose the most appropriate one to use.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn