Jump to content
  • 0

работа с id в jq


rus
 Share

Question

из названия мало что понятно, потому как задача с уровнями.

1) уровень: нужно получить значения всех id тегов <a> в списке <ul><li><a>

2) нужно назначить background тегам <a> такой же как его id (так как они совпадают)

3) нужно по клику на тег <a> - что бы его код цвета (он же бэграунд) попал в value инпута.

 

первый пункт вроде как решается так:

$(document).ready(function () {	var arr = new Array();	$(".list ul li").each(function (i) {		arr.push(this.id);	});});

но вот дальше че-то не могу понять как...

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

Что значит значение id совпадает с background? В качестве id используется имя цвета, класс или ещё что-то?

 

Предположим id это hex код цвета:

$(document).ready(function(){  // Перебираем все 'a' в списке  $('.list li a').each(function(i, el){    // Присваиваем им фон в зависимости от id    $(el).css('background-color', '#' + $(el).attr('id'))    // Вешаем событие на каждый 'a' чтоб при клике на него их id попадал в значение поля myinput    .on('click', function(e){      e.preventDefault();      $('#myinput').val('#' + $(this).attr('id'));      return false;    });  });});
  • Like 1
Link to comment
Share on other sites

  • 0

стоит заметить, что такие id прокатят только в хтмл5, ибо 

 

Note: HTML 4.01 has greater restrictions on the content of id values (for example; in HTML 4.01 id values cannot start with a number).

(http://www.w3schools.com/tags/att_global_id.asp)

Это не важно. Первый символ можно легко сделать _ и проблем не будет. А потом просто откинуть данный символ. Вопрос вообще не в этом был.

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