有没有办法在Javascript上创建一个动态的整数数组?
让我再解释一下。我正在设计一个数字生成器,允许用户输入9-13个数字,选择3"地点"在该数组中,输入另一个数字来填充这些点,以便在输出中更改原始数字。
示例:用户输入123-12-1234 用户选择[0],[1],[2] 用户输入5 结果:输出为555-12-1234
感谢代码。
答案 0 :(得分:1)
以下内容应该让你开始
var arrayOfInts = [];
var input = ""; // accept user input in some way (text input in page?)
arrayOfInts.push(parseInt(input, 10));
// Now work with arrayOfInts
答案 1 :(得分:0)
Javascript'数组'的功能。宾语。在http://www.w3schools.com/jsref/jsref_obj_array.asp上, 你可以找到所有的功能和属性。一些例子:
var list = new Array(123,475,142,89);
在数组中添加/删除元素:
list.push(286);
// Added integer '286'
var num = list.pop();
// Returns the last element and deletes it from the array
var index = list.indexOf(475);
// Returns the position of element '475' in the array, if present
去看看链接。