admin管理员组文章数量:1340295
I'm trying to put an array in to getElementById for a loop purpose. It seems to be not working, how can I do this?
Edit: Sorry folks It says undefined.
var lol=new Array( "test", "test2" );
var x = 0;
while( x == 4 ) {
number = parseInt(document.getElementById(lol[x]).value);
x++;
}
And i have inputs id named test and test2.
I'm trying to put an array in to getElementById for a loop purpose. It seems to be not working, how can I do this?
Edit: Sorry folks It says undefined.
var lol=new Array( "test", "test2" );
var x = 0;
while( x == 4 ) {
number = parseInt(document.getElementById(lol[x]).value);
x++;
}
And i have inputs id named test and test2.
Share Improve this question edited Feb 1, 2010 at 17:51 Strawberry asked Feb 1, 2010 at 17:37 StrawberryStrawberry 68k58 gold badges156 silver badges206 bronze badges 7- 1 It seems to be not working : Any error messages,unexpected behavior, etc? Code would also help... – Felix Kling Commented Feb 1, 2010 at 17:40
- 9 <sillyRandomGuess reason="NoCodeProvided">You have a syntax error on line 31</sillyRandomGuess> – Josh Stodola Commented Feb 1, 2010 at 17:40
- Code snippet + error message = diagnosable problem. – David Berger Commented Feb 1, 2010 at 17:40
- @Josh your phraseology is hilariouser than mine. – David Berger Commented Feb 1, 2010 at 17:41
- getElementById() can't deal with the array. Just run through the array and do a single getElementById() on each member. – Pekka Commented Feb 1, 2010 at 17:46
3 Answers
Reset to default 8Your while loop only works if x==4. Change this to:
while(x < lol.length)
To loop through all the elements in the array. Better yet, this will condense your loop:
var lol=new Array( "test", "test2" );
for( var x = 0; x < lol.length; x++ ) {
number = parseInt(document.getElementById(lol[x]).value);
}
Try taking your array out of the quotes...
document.getElementById(lol[x]).value
The quotes turn it into a static string "lol[x]", when you want the value of the lol array at x index.
This replaces my earlier, less informed answer.
Hope this helps
You say you have number = parseInt(document.getElementById("lol[x]").value);
"lol[x]"
is a string with that literal value, not the value thatlol
holds at indexx
. UsegetElementById(lol[x])
parseInt
may do unexpected things when you don't pass a radix. Use something likeparseInt(document.getElementById(lol[x]).value, 10)
Finally, you aren't checking whether the element exists. Do something like:
var element = document.getElementById(lol[x]);
if (element) {
number = parseInt(element.value, 10);
} else {
// handle error or throw exception
}
本文标签: javascriptgetElementById(arrayx)Stack Overflow
版权声明:本文标题:javascript - getElementById(array[x])? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743630020a2512950.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论