ホームページ > 記事 > ウェブフロントエンド > 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); };
使用例(フィボナッチ数列のテスト):
<!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 サイトの他の関連記事を参照してください。