通过radio 显示和隐藏

<html>
<head>
<title>My Pagetitle>
head>
<body>
<form name="myform" action="http://www.mydomain.com/myformhandler.cgi" method="POST">
<div align="center"><br>
<input type="radio" name="group1" value="Milk"> Milk<br>
<input type="radio" name="group1" value="Butter" checked> Butter<br>
<input type="radio" name="group1" value="Cheese"> Cheese
<hr>
<input type="radio" name="group2" value="Water"> Water<br>
<input type="radio" name="group2" value="Beer"> Beer<br>
<input type="radio" name="group2" value="Wine" checked> Wine<br>
div>
form>
body>
html> 

另外一种radio用法:


						
					
					
						
					


                            
                                

                          


                            
                                

                          


   


//隐藏页面的DIV
    function showPane(val){
    if('N' == val){
    document.getElementsById("deptPanel").css('display','none');
    }else{
    document.getElementsById("deptPanel").css('display','block');
    }
  }


实现radio  显示和隐藏

你可能感兴趣的:(struts2,action,function,list,div)