Ok, this is really a simple question but I am really inpetent at JavaScript.
Basically all I have a form with 2 radio buttons on them.
I need a JavaScript statement which basically says
If radiobutton1 is selected then
document.write ("radiobutton1selected")
else if radiobutton2 is selected then
document.write ("radiobutton2selected")
There are similar questions on here i accept but they are all alot more advanced than what i need.
Ok, this is really a simple question but I am really inpetent at JavaScript.
Basically all I have a form with 2 radio buttons on them.
I need a JavaScript statement which basically says
If radiobutton1 is selected then
document.write ("radiobutton1selected")
else if radiobutton2 is selected then
document.write ("radiobutton2selected")
There are similar questions on here i accept but they are all alot more advanced than what i need.
Share asked Dec 19, 2012 at 17:48 Maximillian NahbaiMaximillian Nahbai 811 gold badge1 silver badge6 bronze badges 03 Answers
Reset to default 7Radio button html:
<input type="radio" name="radionbutton" value="1" id="button1"/>
<input type="radio" name="radionbutton" value="2" id="button"/>
Javascript:
var button1 = document.getElementById("button1");
var button2 = document.getElementById("button2");
if (button1.checked){
alert("radio1 selected");
}else if (button2.checked) {
alert("radio2 selected");
}
http://jsfiddle/Squeegy/KCT8h/
html
<input type="radio" name="zing" id="foo" checked/>
<input type="radio" name="zing" id="bar"/>
js
if (document.getElementById('foo').checked) {
alert('foo');
} else {
alert('bar');
}
This is simple:
var button1 = document.getElementById('button1');
var button2 = document.getElementById('button2');
alert(button1.checked?"Button1 is checked":"Button2 is checked");
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743594318a4476153.html
评论列表(0条)