Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Community Forums
 Code Support: ASP (Non-Forum Related)
 Q: get value of checkbox via javascript
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

bjlt
Senior Member

1144 Posts

Posted - 01 November 2003 :  04:36:08  Show Profile
My knowledge on javascript is limited. What I want to do is to pass the value of selected checkbox.

codes below, I got an undefined error.


<html>
<head>
<script language="JavaScript">
<!--
function test()
	{alert(document.form1.a.value);}
//-->
</script>
</head>

<body>
<form method=post action="" name="form1" id="form1">
<input type="checkbox" name="a" value=1>
<input type="checkbox" name="a" value=2>
<input type="checkbox" name="a" value=3>
<input type="button" onclick="test();">
</form>
</body>
</html>


Thanks in advance.

edit: highlighted codes in question.

Edited by - bjlt on 01 November 2003 04:40:53

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 01 November 2003 :  05:10:14  Show Profile
try this function:
function test(){
	var allChecked = new Array();
	for(i = 0; i < document.form1.a.length; i++)
		if(document.form1.a[i].checked)
			allChecked[allChecked.length] = document.form1.a[i].value;
		alert (allChecked);
}
Go to Top of Page

bjlt
Senior Member

1144 Posts

Posted - 01 November 2003 :  05:37:14  Show Profile
Then it's not possible to obtain the value of the selected multiple checkbox without calling each index, while you can do it if the selection is not multiple.

Thanks Richard.
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 01 November 2003 :  05:51:12  Show Profile
you're welcome.
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 1.09 seconds. Powered By: Snitz Forums 2000 Version 3.4.07