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

In - Thời gian ở trên trang web - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Thời gian » Thời gian ở trên trang web
URL: https://www.javascriptbank.com/time-spent-on-page.html

Thời gian ở trên trang web © JavaScriptBank.comKhi đoạn mã JavaScript được tải, nó sẽ bắt đầu tính thời gian người dùng duyệt trang web, và khi người dùng rời khỏi trang web thì nó sẽ hiện thông báo cho người dùng biết.

Phiên bản đầy đủ: jsB@nk » Thời gian » Thời gian ở trên trang web
URL: https://www.javascriptbank.com/time-spent-on-page.html



JavaScript
<script type="text/javascript" name="timePage.js">// Created by: Cody Shaffer :: http://codytheking313.byethost11.comvar time=1;function timeHere() {  time = time + 1;  finalTime = time / 10;/* Remove the "//" below to display in the title bar  the amount of time the visitor has been on the site.  Be aware though, that it does tend to be a bit distracting. */// document.title = finalTime+" seconds you been here for!";}function sayTime() {  finalTime = time / 10;  alert("Thank you for coming to my site! \n You have been here " + finalTime + " seconds!");}</script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<body onload='window.setInterval("timeHere()", 100)' onunload="sayTime()"><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->