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

In - Tổng thời gian khi thoát - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Linh tinh » Tổng thời gian khi thoát
URL: https://www.javascriptbank.com/total-time-on-exit.html

Tổng thời gian khi thoát © JavaScriptBank.comHiệu ứng sẽ thông báo tổng thời gian bạn đã tồn tại trên trang web một khi thoát.

Phiên bản đầy đủ: jsB@nk » Linh tinh » Tổng thời gian khi thoát
URL: https://www.javascriptbank.com/total-time-on-exit.html



JavaScript
<script language="JavaScript">/*Source: everywhere to find*/Start = new Date();Intime = Start.getTime();function duration() {End = new Date();Outtime = End.getTime();duration = Math.ceil((Outtime - Intime) / 1000);alert("Sie waren genau " +duration+ " Sekunden auf dieser Seite.");}function Popload() {//http://www.javascriptbank.comp3=window.open('http://www.javascriptbank.com','','fullscreen');}</script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<body onUnload="duration()"><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->