ホームページ > 記事 > ウェブフロントエンド > Javascriptで実装されたStopWatch機能
この記事では、主に Javascript によって実装された StopWatch 関数を紹介し、具体的な例に基づいてテスト実行時関数を実装するための JavaScript カスタム 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 中国語 Web サイトの他の関連記事を参照してください。