Count Number Of Elements In An Array
RegisterLogin
Count Number Of Elements In An Array
Post Description: We Will Show You How You Can Count The Number Of Element Values In An Array One By One As Each Element Has Its Own Value You Can Display And Show All Of The Elements In A Single Value Using Loops To Show All The Values For Each Element In Javascript Array
Tags: Count, Number, Of, Elements, In, An, Array
This Post Was Posted On Dec 27, 2009 By Webune Support #2958
Post Description: We Will Show You How You Can Count The Number Of Element Values In An Array One By One As Each Element Has Its Own Value You Can Display And Show All Of The Elements In A Single Value Using Loops To Show All The Values For Each Element In Javascript Array
Tags: Count, Number, Of, Elements, In, An, Array
This Post Was Posted On Dec 27, 2009 By Webune Support #2958
Count Number Of Elements In An Array by Webune Support
the only problem on our previous tutorial, was that you had to know how many elements the javascript array had. but there's a better way. how about if you want javascript to determine the amount of elements in each array. well you can by counting how many elements an array contains.
so using our previous javascript code example, we are going to modify it and add this a variable to determine the number of elements our array has. so we use this code in particular to find out how:
var HowMany = document.myform.elements.length;
and here is the code:
<script type="text/javascript" language="javascript">
function submitted(){
var form = document.myform2
for (i = 0; i < form.elements.length; i++) {
alert(document.getElementById(i).value);
}
}
</script>
Colors:
<form name="myform2">
first color: <input type="text" id="0" value="red"><br />
second color: <input type="text" id="1" value="blue"><br />
third color: <input type="text" id="2" value="green"><br /><br />
<input type="button" value="send" onclick="submitted();"/>
</form>
as you can see, the code is simple, you can modify it or change it to however you need to use it
now you can try it with our demo:
Colors:
remember, if you need web hosting. Webune provides web hosting for you with excellent service and support
Leave Your Comments
Related Pages: [Add Your Website]
Post New Topic
donde
#3115 1
you can learn more here:
http://www.java2s.com/Code/JavaScript/Form-Control/UsingtheformelementsArray.htm
http://www.java2s.com/Code/JavaScript/Form-Control/UsingtheformelementsArray.htm
Dec 27, 2009 Reply Report abuse
©2012 Webune Forums - Fri Dec 14, 2012 3:35 am
Powered by: Webune Forums V3
Powered by: Webune Forums V3