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

In - Lời chào hỏi - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Thời gian » Lời chào hỏi
URL: https://www.javascriptbank.com/greeting-note-script.html

Lời chào hỏi © JavaScriptBank.comBạn có thể dùng hiệu ứng JavaScript này để đưa ra lời chào buổi sáng, chiều, tối tới những người truy cập website của mình. Hiệu ứng JavaScript này dựa vào giờ hệ thống để làm việc.

Phiên bản đầy đủ: jsB@nk » Thời gian » Lời chào hỏi
URL: https://www.javascriptbank.com/greeting-note-script.html



JavaScript
<script type="text/javascript"><!--// Created by: Robin Jones :: http://robinjones.freeuk.com */function greet() {  var todaydate = new Date();  var timeis = todaydate.getTime();  todaydate.setTime(timeis);  var houris = todaydate.getHours();  if (houris > 17) display = "Evening";  else if (houris >12) display = "Afternoon";  else display = "Morning";  var title = document.title;  var welcome = ("Good " + display + ". Welcome to " + title +".");  document.write(welcome);}--></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<script type="text/javascript"><!-- Begin  greet();// End --></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->