Показать сообщение отдельно
  #6 (permalink)  
Старый 17.12.2014, 17:37
Профессор
Посмотреть профиль Найти все сообщения от krutoy
 
Регистрация: 09.11.2014
Сообщений: 610

Вот так попробуй
<html>
  <head>
  </head>
  <body>

<div id="one">
<div id="inner"></div>
</div>
<p id="two"></p>

<script>
Object.defineProperty(HTMLElement.prototype, "gA", {value: HTMLElement.prototype.getAttribute, enumerable: false})
arr=[
   document.querySelector("div").gA("id"),
   document.querySelector("div").querySelector("div").gA("id"),
   document.querySelector("p").gA("id")
]

alert(arr)

</script>
  </body>
 
</html>
Ответить с цитированием