+ 5
Help me
Здравствуйте! Мне нужна помощь. Я создал форму и привязал к ней событие onclick. Теперь мне нужно чтобы весь текст введённый в эту форму отображался в alert. Как это сделать подскажите пожалуйста. Hello, I need help. I created a form and tied to it event onclick. now I need to the entire text entered in this form displayed in the alert. how to do it prompt please
6 Answers
+ 14
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<input type="text" id="get">
<button onclick="display()">Display</button>
<script>
function display(){
var x=document.getElementById("get").value;
alert(x)
}
</script>
</body>
</html>
+ 9
Donna somebody downvoting 😓
+ 7
Help me
Hello! I need help. I created the form and attached the onclick event to it. Now I need all the text entered in this form to be displayed in alert. How do I do this?
@translate