已采纳回答 / 醉流年灬飒月
function count(){ var num1=parseInt(document.getElementById("txt1").value); var num2=parseInt(document.getElementById("txt2").value); var doselect=document.getElementById("select"); var num3 console.log(doselect.value) ...
2020-12-16
已采纳回答 / 醉流年灬飒月
function app(a,b){ if(a>b){ return a; }else if(a<b){ return b; }else if(a==b){ return 'ff' } }//调用函数,实现下面两组数中,返回较大值。 document.write(" 5 和 4 的较大值是:"+app(5,4)+"<br>"); document.write(" 5 和 6 的较大值是:" +app(5,6)...
2020-12-15
已采纳回答 / 樱雪_sakura
你确定粘贴代码的时候粘贴正确了?首先数组中字符串有个是单引号,一上来就报错啊。其次是你的 for 循环,循环条件之间用分号分隔,不是逗号。再者你的 arr 变量没用到啊<...code...>
2020-12-15
已采纳回答 / 醉流年灬飒月
function MATH(){ var num=Math.round(Math.random()*999); var str = num > 99 ? num : (num > 9 ? '0' + num : '00' + num) document.getElementById("text1").value = str;}
2020-12-09