动态更改变量

时间:2018-05-07 18:13:00

标签: javascript arrays for-loop

由于我有几个需要用我提供的数字(num1变量)划分的条目,我发现完成任务有困难。

我希望循环划分我并将每个名为listX的变量的值存储为34.有9个列表(每个都有不同的编号),我希望每个列表都用我提供的数字划分,但要先划分2,然后是3,然后是4,5 ......直到我提供的数字。

我发现用对象可以做得最好,但是我无法找到解决方案,因为我对这些东西不太熟悉。理想的是获得如下对象:

List1:第一师:xxx

List1:第二师:xxx

List1:34师:xxx

...

清单8:22师:xxx

...

清单9:第33分:xxx 清单9:第34师:xxx

" xth division"应与num1变量

中提供的数字相关联

我想要得到的是这样的:

它问我有多少次我希望我的值被分割,我输入5.然后它会问我9个输入的值是多少。

我向第一个输入100声明。我想要的结果应该是:

100/1 = 1

100/2 = 50

100/3 = 33,33

100/4 = 25

100/5 = 20

然后我声明第二个输入数字200.结果应该是:

200/1 = 200

200/2 = 100

200/3 = 66,66

200/4 = 50

200/5 = 40

直到我上一次输入才一直......

我试图开发的是D' Hondt在议会中用于某些国家的席位分配方法。

这是我到目前为止所得到的,但是,它不起作用。



var array1 = [];
var list = "list";

function someFunction() {
    var num1 = 34;
    for (var i = 1; i <= num1; ++i) {
        for (var j = 1; j <= 9; j++) {

            array1[j] += document.getElementById(list + j).value / i;
            array1[j] += "<br/>";

        }
    }
    document.getElementById("demo1").innerHTML = list + j;
}
&#13;
<tr>
   <td><input type="text" id="list1" style="width:50px" onkeyup="someFunction()"></input></td>
   <td><input type="text" id="list2" style="width:50px" onkeyup="someFunction()"></input></td>
   <td><input type="text" id="list3" style="width:50px" onkeyup="someFunction()"></input></td>
   <td><input type="text" id="list4" style="width:50px" onkeyup="someFunction()"></input></td>
   <td><input type="text" id="list5" style="width:50px" onkeyup="someFunction()"></input></td>
   <td><input type="text" id="list6" style="width:50px" onkeyup="someFunction()"></input></td>
   <td><input type="text" id="list7" style="width:50px" onkeyup="someFunction()"></input></td>
   <td><input type="text" id="list8" style="width:50px" onkeyup="someFunction()"></input></td>
   <td><input type="text" id="list9" style="width:50px" onkeyup="someFunction()"></input></td>
</tr>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:1)

我认为这就是你要找的东西,但有几个笔记。

几点说明:

  • input元素没有结束标记。
  • type="textinput元素的默认值,因此您并不需要 写下来。
  • 不要重复自己(干)。由于您的所有input元素都需要 相同的样式,只需设置一个CSS规则来设置它们的所有样式 同样的方式。
  • 不要使用内联HTML事件处理程序。将JavaScript与...分开 您的HTML并遵循现代标准。

有关详细信息,请参阅以下评论。

&#13;
&#13;
// Get the number to divide by (You can get this anyway you want. A prompt is show here.):
var num = +prompt("How many calculations per input would you like?");

// Get all the table inputs into an array
var inputs = Array.prototype.slice.call(document.querySelectorAll("td > input[id^='input']"));

// Loop over the input array...
inputs.forEach(function(input){
  // Set up an event handler for the input
  input.addEventListener("input", someFunction);
});

function someFunction(){
  var resultString = "";
  for(var i = 0; i < num; i++){
    // Do the math and build up the string
    resultString += (this.value / (i + 1)) + "<br>"; 
  }
  
  // Update the output cell that corresponds to the input element with the results
  document.querySelector("#" + this.id.replace("input", "output")).innerHTML = resultString;
}
&#13;
td > input { width:50%; }
&#13;
<table id="inout">
  <tr>
    <td><input id="input1"></td>
    <td><input id="input2"></td>
    <td><input id="input3"></td>
    <td><input id="input4"></td>
    <td><input id="input5"></td>
    <td><input id="input6"><td>
    <td><input id="input7"></td>
    <td><input id="input8"></td>
    <td><input id="input9"></td>
  </tr>
  <tr>
    <td id="output1"></td>
    <td id="output2"></td>
    <td id="output3"></td>
    <td id="output4"></td>
    <td id="output5"></td>
    <td id="output6"><td>
    <td id="output7"></td>
    <td id="output8"></td>
    <td id="output9"></td>
  </tr>  
</table>

<div id="output"></div>
&#13;
&#13;
&#13;