Jump to content
  • Sign Up
  • 0

Задача по JavaScript


Наташа
 Share

Question

Здравствуйте, никак не могу решить задачу: требуется получить веб-страницу, где пользователь вводит имя и фамилию в соответствующие поля, нажимает кнопку "отправить" и в результате выводится фраза: Ответ: Здравствуйте, Имя Фамилия.

Всё получилось кроме одного: при нажатии на кнопку выводится только " Ответ: Фамилия", а слово " Здравствуйте" и имя почему-то не выводятся.

Даю ссылку на файл.

https://disk.yandex.ru/d/6n834dYn8ForIw

Заранее спасибо. С уважением, Наташа.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0
<!DOCTYPE html>
<html lang="ru">
<head>
   <meta charset="utf-8">
   <title>Document</title>
</head>
<body>
<p>Имя:<input class="name" type="text"></p>
<p>Фамилия:<input class="surname" type="text"></p>
<button class="btn">Отправить</button>
<p>Ответ:<span class="result"></span></p>
<script>
     btnElement=document.querySelector(".btn");
     resultElement=document.querySelector(".result");
     inputElement1=document.querySelector(".name");
     inputElement2=document.querySelector(".surname");
     btnElement.addEventListener("click", function() {
         resultElement.innerHTML='Здравствуйте, '+inputElement1.value+' '+inputElement2.value;});
</script>
</body>
</html>

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy