Javascript-форум (https://javascript.ru/forum/)
-   Общие вопросы Javascript (https://javascript.ru/forum/misc/)
-   -   возможно ли по id тега, к тегу добавить атрибут? (https://javascript.ru/forum/misc/34403-vozmozhno-li-po-id-tega-k-tegu-dobavit-atribut.html)

CoddX 03.01.2013 15:58

возможно ли по id тега, к тегу добавить атрибут?
 
возможно ли по id тега, к тегу добавить атрибут?
что-то типа:
document.getElementById("1").setAttribute("aaa", bbb);

заранее спасибо за помощь) :thanks:

Deff 03.01.2013 16:09

<a  id="a"><b id="b">ТЕГ b</b></a>

<script>
document.getElementById("b").setAttribute("aaa", "bbb");
alert(document.getElementById("a").innerHTML);
</script>


Часовой пояс GMT +3, время: 14:40.