>  기사  >  웹 프론트엔드  >  Javascript로 구현된 StopWatch 기능

Javascript로 구현된 StopWatch 기능

陈政宽~
陈政宽~원래의
2017-06-28 12:48:331301검색

이 글에서는 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.