// 이전 이웃을 가져오기 위해 Firefox와 호환됩니다. 동일한 유형의 노드 Node
function PreviousSiblingSameType(node, cnode)
{
// 비어 있으면 null을 직접 반환
if(node.previousSibling == null)
{
return null;
}
else
{
// 노드 유형이 동일하지 않으면 재귀 계속
if(node.previousSibling.nodeType != cnode.nodeType)
{
return perviousSiblingSameType(node.previousSibling , cnode);
}
// 노드 유형이 동일하면
else if(cnode.nodeType == node.previousSibling.nodeType)
을 반환합니다. {
return node.previousSibling;
}
}
}
// 동일한 노드 유형의 다음 인접 노드를 가져오기 위해 Firefox와 호환 가능
function nextSiblingSameType (노드, cnode)
{
// 비어 있으면 null을 직접 반환합니다.
if(node.nextSibling == null )
{
return null
}
else
{
// 노드 유형이 같지 않으면 재귀 계속
if(node.nextSibling.nodeType != cnode.nodeType)
{
return nextSiblingSameType(node.nextSibling , cnode)
}
// 노드 유형이 동일하면
else if(cnode.nodeType == node.nextSibling.nodeType)
{
return node.nextSibling
}
}
}