為什么沒有結(jié)果 ??大神幫幫忙
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>nextSibling</title>
</head>
<body>
<ul id="u1">? ?
? ? ? ? ? ? <li id="a">javascript</li>? ?
? ? ? ? ? ? <li id="b">jquery</li>? ?
? ? ? ? ? ? <li id="c">html</li>? ?
? ? ? ? </ul>? ?
? ? ? ? <ul id="u2">? ?
? ? ? ? ? ? <li id="d">css3</li>? ?
? ? ? ? ? ? <li id="e">php</li>? ?
? ? ? ? ? ? <li id="f">java</li>? ?
? ? ? ? </ul>? ?
<script type="text/javascript">
? ? function get_nextSibling(n){
? ? ? ? var x=n.nextSibling;
? ? ? ? while (x && x.nodeType!=1){
? ? ? ? ? ? x=x.nextSibling;
? ? ? ? }
? ? ? ? return x;
? ? }
? ? var x=document.getElementsByTagName("li")[0];
? ? document.write(x.nodeName);
? ? document.write(" = ");
? ? document.write(x.innerHTML);
? ??
? ? var y=get_nextSibling(x);
? ??
? ? if(y!=null){
? ? ? ? document.write("<br />nextsibling: ");
? ? ? ? document.write(y.nodeName);
? ? ? ? document.write(" = ");
? ? ? ? document.write(y.innerHTML);
? ? }else{
? ? ? document.write("<br>已經(jīng)是最后一個節(jié)點");? ? ??
? ? }
function get_perviousSibling(i){
? ? var h=i.perviousSibling;
? ? ?while (h && h.nodeType!=1){
? ? ? ? ? ? h=h.perviousSibling;
? ? ? ? }
? ? return h;
}
var k=document.getElementByTagName("li")[2];
?document.write(k.nodeName);
? ? document.write(" = ");
? ? document.write(k.innerHTML);
? ??
? ?var m=get_perviousSibling(k);
? ??
? ? if(m!=null){
? ? ? ? document.write("<br />perviousSibling:");
? ? ? ? document.write(m.nodeName);
? ? ? ? document.write(" = ");
? ? ? ? document.write(m.innerHTML);
? ? }else{
? ? ? document.write("<br>已經(jīng)是第一個節(jié)點");? ? ??
? ? }??
</script>
</body>
</html>
? ??
為什么后面的想要得到前一個節(jié)點得不到結(jié)果??大神來看一看啊!!!
2019-03-11
get_perviousSibling函數(shù)后面的var k=document.getElementByTagName("li")[2];這條語句寫錯了,getElementByTadName少了一個s,應(yīng)該是var k=document.getElementsByTagName("li")[2];