ホームページ > 記事 > ウェブフロントエンド > HTML DOM console.error() 方法
HTML DOM console.error() メソッドは、エラー メッセージをコンソールに書き込むために使用されます。この方法はテストとデバッグに最適です。
console.error() メソッドの構文は次のとおりです。
console.error(console.error(message))
ここで、message は JavaScript 文字列またはオブジェクトです。これは必須のパラメータ値です。
HTML DOM console.error() メソッドの例を見てみましょう -
<!DOCTYPE html> <html> <body> <h1>console.error() Method</h1> <p>Click the below button to write object as error message on the console</p> <button type="button" onclick="errMessage()">ERROR</button> <script> function errMessage(){ var errObj = { Message:"ERROR has been caused",Value:"NEGATIVE"}; console.error(errObj); } </script> <p>Press F12 key to view the error message in the console </p> </body> </html>
これにより、次の出力が生成されます-
[エラー] ボタンをクリックし、開発者ツールの [コンソール] タブを確認します。
上記の例では、
最初に ERROR という名前のボタンを作成しました。ユーザーがクリックすると、errMessage() 関数が実行されます。 -
<button type="button" onclick="errMessage()">ERROR</button>
errMessage() メソッドは、Message および というメンバーを持つボタンを作成します。 Value のオブジェクトとそれぞれの値。このオブジェクトは、パラメータとしてコンソール オブジェクトの error() メソッドに渡されます。コンソールの console.error() メソッドは、オブジェクトをエラー メッセージとしてコンソールに出力します。 -
function errMessage(){ var errObj = { Message:"ERROR has been caused",Value:"NEGATIVE"}; console.error(errObj); }
以上がHTML DOM console.error() 方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。