检查兄弟节点是否有文本内容

时间:2012-11-05 18:08:28

标签: javascript dom

我想遍历javascript中的兄弟节点。我使用document.getElementById,我想检查它的兄弟是否有任何文本内容。如果不是,我想检查父节点的兄弟姐妹。

<!DOCTYPE html>
<html>
<head>
<script>
function changeSize()
{
var x=document.getElementById("compman");
if (x.parentNode && x.parentNode.textContent) {
alert("My input has a value!");
} 

y=x.nextSibling;
alert(y.nodeValue);
alert(x.parentNode.textContent);

}
</script>
</head>
<body>


<a href="http://sample_url"   id="pd_cp_mov_0_B004JMY312" > 

<img src="http://samplepic.jpg" width="50" alt="" class="faceout" height="50" border="0" id="compman">
<span class="cpAsinTitle">Hocus Pocus</span> 
<div>
sample text
</div>
</a>
<p>test content</p>
<p class="s2"> sample content 2 </p>
<br><br>
<input type="button" onclick="changeSize()" value="Change size of image">

</body>
</html>

在上面的内容中,我抓住了img标签。现在我想检查它的兄弟是否有任何文本内容。在这种情况下,它具有Hocus Pocus的值。如果它没有文本值,我想检查其父级的兄弟。因此应返回测试内容。

0 个答案:

没有答案