最新回答 / xiao二
function count(){ var aa = parseInt(document.getElementById("txt1").value); console.log(aa) //获取第二个输入框的值 var aa1 = parseInt(document.getElementById("txt2").value); //获取选择框的值 var sel = document.getElementById("select").value; console.log(sel); ...
2019-03-10
已采纳回答 / 冷冽丶3796294
getElementById 很多地方拼错了document.getElementById.("fruit").value=result; ("fruit")前面多了个.
2019-03-10
最新回答 / 会会王的小迷妹
你想法没有错, j 获取的就是输入框输入的一个数值 代码这样写就可以了function checkone(){ var j=document.getElementById("wb").value; // 任务3 document.getElementById("hobby"+j).checked=true; }
已采纳回答 / qq_慕瓜2249681
“+”在JS中也会作为连接符使用,涉及到类型转换,想实现加法可以转换下类型,如:result=parseFloat(num1)+ parseFloat(num2);就能进行运算了。
2019-03-08
最新回答 / 慕先生050283
<!DOCTYPE HTML><html ><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>函数</title><script type="text/javascript">//定义函数function compare(x, y){ if (x > y) { return x...
2019-03-08
最新回答 / 佳佳雯
if(infos[i][3] == "大一"){ document.write(infos[i][0]+"<br>"); freshMan[a] = new Array(); freshMan[a][0] = infos[i][0]; freshMan[a][1] = infos[i][1]; a = a + 1; }添加上加粗的那句话就行了,你需要在赋值二维数组前 申明一维数组的某个元素也是数组
2019-03-08