2

我想遍历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 的值。如果它没有文本值,我想检查其父级的兄弟姐妹。所以应该返回测试内容。

4

0 回答 0