Jump to content
  • 0

Чего не хватает?


zer00
 Share

Question

Я только изучаю яваскрипт и сразу эксперементирую на локальном сервере)

Хочу попробовать написать маленький скрипт, смысл вот в чем:

Вводим ник в поле ввода, жмем кнопку и выскакивает окошко "Привет **введённый ник**!"

Так вот не могу понять как связать поле ввода и кнопку( Получилось примерно так:


<html>
<head>
</head>
<body>
<center>
<h2>Введите ник:</h2>
<br>
<input name="nick" type="text"><input type="button" value="PUSH" onclick="alert('Привет '+nick +'!'"/>
</center>
</body>
</html>

Вопрос вот в чем: как сделать введенный текст переменной?

Edited by zer00
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Например, так.

<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>1</title>
<script>
function text() {
nick = document.getElementById("nick").value;
alert('Привет, '+nick +'!')
}
</script>
</head>
<body>
<h2>Введите ник:</h2>
<input id="nick"><input type="button" value="PUSH" onclick="text()">
</body>
</html>

Link to comment
Share on other sites

  • 0

А document.getElementById("nick").value; , насколько я понял вытаскивает из документа значение элемента с id="nick"??

И ещё вопрос: Как сделать чтобы по нажатию на кнопку например менялся цвет фона?

Т.е. допустим в CSS прописано

body{background-color:FFFFFF}

А если нажать на кнопку фон устанавливается #000000.

Так же можно сделать индикатор загрузки страницы - например

<body onLoad="/*скрипт меняющий CSS элемента*/>

.

Edited by zer00
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