<scripttype="text/javascript">
jQuery(function() {
jQuery(".regcontentRadio").click(function(){
var val = this.value;
if(val == 1){
document.all.a.style.display="block";
document.all.b.style.display="none";
document.all.c.style.display="none";
}
if(val == 2){
document.all.a.style.display="none";
document.all.b.style.display="block";
document.all.c.style.display="none";
}
if(val == 3){
document.all.a.style.display="none";
document.all.b.style.display="none";
document.all.c.style.display="block";
}
});
});
</script>
页面部分:
<TR>
<TDalign="center" colSpan=2 height=20>
注册类型
</TD>
<TDcolSpan=5>
<inputtype="radio" name="regcontent" value="1"checked/>项目批复信息
<inputtype="radio" name="regcontent" value="2"/>批准证书信息
<inputtype="radio" name="regcontent" value="3"/>营业执照信息
</TD>
</TR>
<tbody id="a"style='display:block'>
<TR>
</TR>