Jump to content
  • 0

Как выбрать дочерний элемент с name='node'?


Bolmazov
 Share

Question

Вроде простая задача, но я давно не упражнялся с js, пожтому возникли проблемы.

Как выбрать дочерний элемент с name='node' у элемента с известным id??

Пытаюсь так:

	  var parent = document.getElementById(\''.$i.'\');
var object = parent.getElementsByName(\'node\');

for (var childItem in object.childNodes) {
if (object.childNodes[childItem].nodeType == 1){
object.childNodes[childItem].style.display = \'none\';
}

}

Но тщетно (кажется проблемы с getElementsByName). Поможете?

P.S. нужно что бы работало в ie6

Edited by Bolmazov
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Элементы с именами становятся свойствами формы, в которой они лежат:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru" lang="ru">
<head>
<title>blank</title>
<script type="text/javascript">
window.onload = function() {
alert(
document.getElementById('form1').input1.tagName
);
};
</script>
</head>
<body>
<form action="" id="form1">
<input name="input1" />
</form>
</body>
</html>

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