完整版標(biāo)準(zhǔn)答案?。?!頂我上去
<!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_previousSibling(n){
? ? ? ? var x=n.previousSibling;
? ? ? ? while (x&&x.nodeType!=1){
? ? ? ? ? ? x=x.previousSibling;
? ? ? ? }
? ? ? ? return x;
? ? }
? ? var x=document.getElementsByTagName("li")[0];
? ? document.write(x.nodeName);
? ? document.write(" = ");
? ? document.write(x.innerHTML);
? ??
? ? while(true){
? ? x=get_nextSibling(x);
? ??
? ? if(x!=null){
? ? ? ? document.write("<br />nextSibling: ");
? ? ? ? document.write(x.nodeName);
? ? ? ? document.write(" = ");
? ? ? ? document.write(x.innerHTML);
? ? }else{
? ? ? document.write("<br>已經(jīng)是最后一個(gè)節(jié)點(diǎn)<br>");
? ? ? break;
? ? }
? ? }
? ??
? ? var y=document.getElementsByTagName("li")[5];
? ? document.write("<br>"+y.nodeName);
? ? document.write(" = ");
? ? document.write(y.innerHTML);
? ??
? ? while(true){
? ? y=get_previousSibling(y);
? ??
? ? if(y!=null){
? ? ? ? document.write("<br />previousSibling: ");
? ? ? ? document.write(y.nodeName);
? ? ? ? document.write(" = ");
? ? ? ? document.write(y.innerHTML);
? ? }else{
? ? ? document.write("<br>已經(jīng)是第一個(gè)節(jié)點(diǎn)");
? ? ? break;
? ? }
? ? }
</script>
</body>
</html>
2019-11-06
你是不是發(fā)錯(cuò)地方了?