Home  >  Article  >  Web Front-end  >  Function to calculate page execution time using js_time and date

Function to calculate page execution time using js_time and date

WBOY
WBOYOriginal
2016-05-16 19:23:32808browse

I saw a good method from another website that uses js to calculate page execution time, which is better than using asp

<script> <BR> <!-- <BR> var startTime,endTime; <BR> var d=new Date(); <BR> startTime=d.getTime(); <BR> //--> <BR> </script><script>d=new Date();endTime=d.getTime <BR>();document.write((endTime-startTime)/1000);</script>

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