»
Tiếng AnhTiếng PhápTiếng Việt

In - Ngày tháng đơn giản - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Thời gian » Đồng hồ » Ngày tháng đơn giản
URL: https://www.javascriptbank.com/current-full-date-script.html

Ngày tháng đơn giản © JavaScriptBank.comMột đoạn mã khác để tạo hiệu ứng hiển thị ngày tháng dạng đơn giản trên trang web.

Phiên bản đầy đủ: jsB@nk » Thời gian » Đồng hồ » Ngày tháng đơn giản
URL: https://www.javascriptbank.com/current-full-date-script.html



JavaScript
<SCRIPT LANGUAGE="JavaScript"><!-- BegindayName = new Array("", "Monday", "Tuesday", "Wednesday", "Thursday","Friday", "Saturday", "Sunday")monName = new Array("January", "February", "March", "April", "May","June", "July", "August", "September", "October", "November","December")now = new Date// End --></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<SCRIPT LANGUAGE="JavaScript"><!-- Beginvar strDay;if ((now.getDate() == 1) || (now.getDate() != 11) &&(now.getDate() % 10 == 1)) // Correction for 11th and 1st/21st/31ststrDay = "st ";else if ((now.getDate() == 2) || (now.getDate() != 12) &&(now.getDate() % 10 == 2)) // Correction for 12th and 2nd/22nd/32ndstrDay = "nd ";else if ((now.getDate() == 3) || (now.getDate() != 13) &&(now.getDate() % 10 == 3)) // Correction for 13th and 3rd/23rd/33rdstrDay = "rd ";else strDay = "th ";document.write(dayName[now.getDay()]+" the "+now.getDate()+strDay+"of "+monName[now.getMonth()]+", "+now.getFullYear())// End --></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->