-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathradio.html
28 lines (26 loc) · 799 Bytes
/
radio.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<script>
function check_value(onoff){
switch(onoff){
case "On":
document.getElementById("myImage").src = "images/pic_bulbon.gif";
break;
case "Off":
document.getElementById("myImage").src = "images/pic_bulboff.gif";
break;
}
}
</script>
</head>
<body>
<img id="myImage" src="images/pic_bulboff.gif" style="width:100px">
<form method="post" action="">
<input type="radio" name="switch" value="On" onchange="check_value('On')"> On<br>
<input type="radio" name="switch" value="Off" onchange="check_value('Off')" checked="checked"> Off<br>
</form>
</body>
</html>