JavaScript-Developer-I日本語試験無料問題集「Salesforce Certified JavaScript Developer I Exam (JavaScript-Developer-I日本語版) 認定」
開発者は、入力フィールドを使用して単純なWebページを作成します。ユーザーがテキストを入力したとき
入力フィールドでボタンをクリックすると、フィールドの実際の値がに表示される必要があります
コンソール。
HTMLファイルの内容は次のとおりです。
<input type =" text" value="Hello" name ="input">
<button type ="button" >Display </button>
The developer wrote the javascript code below:
Const button = document.querySelector('button');
button.addEvenListener('click', () => (
Const input = document.querySelector('input');
console.log(input.getAttribute('value'));
ユーザーがボタンをクリックすると、出力は常に「Hello」になります。
このコードを期待どおりに機能させるには、何をする必要がありますか?
入力フィールドでボタンをクリックすると、フィールドの実際の値がに表示される必要があります
コンソール。
HTMLファイルの内容は次のとおりです。
<input type =" text" value="Hello" name ="input">
<button type ="button" >Display </button>
The developer wrote the javascript code below:
Const button = document.querySelector('button');
button.addEvenListener('click', () => (
Const input = document.querySelector('input');
console.log(input.getAttribute('value'));
ユーザーがボタンをクリックすると、出力は常に「Hello」になります。
このコードを期待どおりに機能させるには、何をする必要がありますか?
正解:B
解答を投票する