if statement - JavaScript checking radio buttons - Stack Overflow

Ok, this is really a simple question but I am really inpetent at JavaScript.Basically all I have a form

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 0
Add a ment  | 

3 Answers 3

Reset to default 7

Radio 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

相关推荐

  • if statement - JavaScript checking radio buttons - Stack Overflow

    Ok, this is really a simple question but I am really inpetent at JavaScript.Basically all I have a form

    1天前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信