while(content.childNodes.length>0){content.removeChild(content.childNodes[content.childNodes.length-1]);}
主要是在于方法,至于循环不一定要用for
主要是在于方法,至于循环不一定要用for
2020-02-16
最赞回答 / 慕尼黑1441384
最简洁的代码:<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body><script type="text/javascript"> var w=window.innerWidth || document.documentElement.clientHeight...
2020-02-16
已采纳回答 / 慕的地7636881
你这个错误有点多。。。一:文本框写的 id='fruit' ,设置结果输入框值写的是 friut ,改成 fruit ;二:switch 有两处错误,case 后面写错了,resuslt 的那几行语句后面没有用分号结尾;下面是改好了测试过的,你对比一下<!DOCTYPE html><html> <head> <title> 事件</title> <script type="text/javascript"> f...
2020-02-14
var getValues = document.getElementById('count').innerHTML;
function counts(){
getValues--;
document.getElementById('count').innerHTML = getValues;
setTimeout(this.counts,1000);
if (getValues == 0) {
location.href="http://baidu.com";
}
}
setTimeout(counts,1000);
function counts(){
getValues--;
document.getElementById('count').innerHTML = getValues;
setTimeout(this.counts,1000);
if (getValues == 0) {
location.href="http://baidu.com";
}
}
setTimeout(counts,1000);
最新回答 / 慕的地6574030
var j=document.getElementById("wb").value;//是获取wb里面的值赋值给j(即输入框中输入的值) var hobby = document.getElementById("hobby"+j); //"hobby"+j是前面id对应的hobby1-6; //document.getElementById("hobby"+j)是获取id=hobby j; hobby.checked =...
已采纳回答 / 慕雪0266382
function checkmore(){ var j=document.getElementById("wb").value; var i=j.split(",") for(x=0;x<i.length;x++){ document.getElementById("hobby"+i[x]).checked=true;}
最赞回答 / 御守影歌
可以想象你叫外卖的过程,下订单(传入参数),餐馆做菜(函数),外卖员送餐(return),没有return就相当于餐馆做菜了没人送。如果函数的处理结果需要被其他部分引用,必须用return从函数内部传到函数外部。如果函数处理结果不会在别处用到,也可以不用return。
2020-02-13
已采纳回答 / weixin_慕用0124827
document.write("系好安全带,准备起航——目标JS");alert("准备好了,起航吧!");这两句的分号改成用英文输入法的; 就有反应了~~
2020-02-11