大佬幫忙看看有啥子問題
<!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;
? ? }
? ? function get_perviousSibing(m){
? ? ? ? var x=m.previousSibling;
? ? ? ? while (x && x.nodeType!=1){
? ? ? ? ? ? x=x.previousSibling;
? ? ? ? }
? ? ? ? return x;
? ? }
? ? var a=document.getElementsByTagName("li")[2];
? ? document.write(a.nodeName);
? ? document.write(" = ");
? ? document.write(a.innerHTML);
? ??
? ? var b=get_previousSibing(a);
? ??
? ? if(b!=null){
? ? ? ? document.write("<br/>previoussibling:");
? ? ? ? document.write(b.nodeName);
? ? ? ? document.write(" = ");
? ? ? ? document.write(b.innerHTML);
? ? }else{
? ? ? ? document.write("<br/>已經(jīng)是第一個(gè)節(jié)點(diǎn)");
? ? }
? ? var x=document.getElementsByTagName("li")[1];
? ? 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)是最后一個(gè)節(jié)點(diǎn)");? ? ??
? ? }
</script>
</body>
</html>
2018-11-19
你這是歡迎大家來找茬。。。
你定義方法用的是?function get_perviousSibing 而調(diào)用的時(shí)候用了var b=get_previousSibing(a)。前面per 后面使用 pre ,當(dāng)然會(huì)出現(xiàn)未定義
2018-11-23
。。。