이 글에서는 Javascript로 구현한 StopWatch 기능을 주로 소개하고, 구체적인 예시를 바탕으로 테스트 런타임 기능을 구현하기 위한 자바스크립트 커스텀 StopWatch의 관련 운용 기법을 분석했습니다. Javascript StopWatch 기능의 구현을 설명합니다. 다음과 같이 참조용으로 모든 사람과 공유하세요.
때때로 테스트를 위해 일부
함수를 작성하려면 js가 필요할 수 있습니다. 실행 시간을 테스트해야 하는 경우 스톱워치가 필요할 수 있습니다. StopWatch 클래스:
function stopWatch() { } stopWatch.prototype.Start = function () { this.startD = new Date(); return this; }; stopWatch.prototype.Stop = function () { this.startD = new Date(); return this; }; stopWatch.prototype.Seconds = function () { return Math.abs((new Date() - this.startD) / 1000); };
Usage 예(Fibo Naqi 시퀀스 테스트):
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>StopWatch</title> </head> <body> <script > function stopWatch() { } stopWatch.prototype.Start = function () { this.startD = new Date(); return this; }; stopWatch.prototype.Stop = function () { this.startD = new Date(); return this; }; stopWatch.prototype.Seconds = function () { return Math.abs((new Date() - this.startD) / 1000); }; var sw = new stopWatch().Start(); (function f(n){return n == 1 || n == 2 ? 1 : f(n-1)+f(n-2);})(45); alert(sw.Seconds()); </script> </body> </html>
작업 렌더링은 다음과 같습니다.
위 내용은 Javascript로 구현된 StopWatch 기능의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!