Jump to content
  • 0

Исчезающий и появляющийся текст


Nikita_kharkov
 Share

Question

Задача состоит в следующем: 

При нажатии убирается текст и появляется пустое поле. Если пустое и осталось появляется вновь текст первый. Всё бы хорошо (в функции, которая есть), но она не учитывает более одного поля, ибо везде возращает "Ваш емейл". И второе: если что-то ввёл пользователь, то при вновь когда он выбирает, набранное не стиралось. Если что поясню подробнее :)

...<form name="menu" method="post" action="main.php">	 <p>Введите свой емейл</p>	  <input class="indate" type="text" name="menu" value="Ваш емейл"	  onfocus="foc(this)" onblur="blu(this)" />	  <p >Введите пароль</p>	  <input class="indate" type="text" name="menu" value="Ваш пароль"	  onfocus="foc(this)" onblur="blu(this)" />	  <p style="font-size: 8pt; float:right;"><a href="Reg_form.php">Зарегистрироваться?</a></p>   </form>...
var a;function foc(elem){	if (elem.value == 'Ваш емейл' |  elem.value == 'Ваш пароль')	{ elem.value = ''; elem.style.color = '#000';}}function blu(elem){	if (elem.value == '') 	{elem.value = 'Ваш емейл'; elem.style.color = '#777';}}
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

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