Jump to content
  • 0

Как выбрать следующий за нужным элемент?


sergei8550
 Share

Question

Есть такой код:
<div class="field">
  <input type="text" id ="email" name="email">
  <label for="email" id="label_email">Введите Email</label>
</div>
<div class="field">
  <input type="text" id ="namel" name="name">
  <label for="name" id="label_name">Введите ваше имя</label>
</div>
<div class="field">
  <input type="text" id ="country" name="country">
  <label for="country" id="label_country">Введите страну</label>
</div>
<div class="field">
  <input type="text" id ="city" name="city">
  <label for="city" id="label_city">Введите город</label>
</div>
<script>
   var input = document.getElementsByTagName('input;)

  for (i = 0; i < input.length; i++) {
input.onclick???? . focus????  = function {
...  Где-то там есть if (this.id = id инпута) {
  то this.input и как-то выбрать следующий лейбл за ним.. чтоб он в заполненном поле не появлялся.. 
Нужно чтоб при получении фокуса, лейбл с поля инпута исчезал, конечно можно placeholderОМ сделать это, но там нюансы есть, и надо именно label в абсолютной позиции делать. Что-то запутался очень очень.. помогите пожалуйста сложить куски мозаики... 

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Короче смотри Серега. Вот твой код, я вчера как раз в нем разобрался 

var input = document.querySelectorAll('input');

for (i = 0; i < input.length; i ++) {
  input.onfocus = function() {
  this.nextElementSibling.style.opacity = "0";
  } 
  input.onblur = function() {
  if (this.value === "") {
  this.nextElementSibling.style.opacity ="1";
  } else {
  this.nextElementSibling.style.opacity ="0";
  }
  }
}

Я вообще с добавлением классов делал, если пустой то класс с прозрачностью 1, если полный с 0. Но так тоже по идее должно работать.

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