document.write(mylist.parentNode.parentNode.parentNode.childNodes[7].childNodes[1].childNodes[i].firstChild.nodeValue+'<br>');
空格编号是0/(1)li/2/(3)li/4/(5)li/6/(7)li , 最后没有8. 就是一共2N个,编号从0-----2N-1
空格编号是0/(1)li/2/(3)li/4/(5)li/6/(7)li , 最后没有8. 就是一共2N个,编号从0-----2N-1
2019-09-27
<script type="text/javascript">
var x=document.getElementById("con");
document.write(x.childNodes[1].firstChild.nodeValue+'<br>');
document.write(x.childNodes[x.childNodes.length - 2].firstChild.nodeValue);
</script>
var x=document.getElementById("con");
document.write(x.childNodes[1].firstChild.nodeValue+'<br>');
document.write(x.childNodes[x.childNodes.length - 2].firstChild.nodeValue);
</script>
2019-09-27
最新回答 / 湫谷Sama
for循环臃肿也,不如直接全部设为false后再进行 var hobby = document.getElementById("hobby"+j); hobby.checked = true;
已采纳回答 / weixin_慕莱坞9211585
基本完成,不足之处大家指出<!DOCTYPE html><html> <head> <title> new document </title> <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> <script type="text/javascript"> window.onload = function()...
2019-09-25
最新回答 / voiceee
你这个有点累赘<!DOCTYPE html><html> <head> <title> new document </title> <meta charset="utf-8"> <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> <script type="text/javascript"> wi...
2019-09-25
最赞回答 / weixin_慕运维2246004
//第一步把之前的数据写成一个数组的形式,定义变量为 infosvar arr=[ ['小A','女',21,'大一'], ['小B','男',23,'大三'], ['小C','男',24,'大四'], ['小D','女',21,'大一'], ['小E','女',22,'大四'], ['小F','男',21,'大一'], ['小G','女',22,'大二'], ['小H','女',20,'大三'], ['小I','女',20,'大一'], ['小J','男',20,'大三'] ] //第一次筛选,找出...
2019-09-25