我是使用Jquery for Spring MVC的新手。
这是我的jsp代码:
<form:radiobutton id="radio" class="radioSelect" path="version" value="6"/>6
<form:radiobutton class="radioSelect" path="version" value="7"/>7
Field1<form:input id="6" class="fieldsSpecific" path="field1"/>
Field2<form:input id="7" class="fieldsSpecific" path="field2"/>
我希望在选择radiobutton为6时显示field1并隐藏field2,反之为7。
这是我的Jquery:
$(".radioSelect").each(function(){
showSpecificFields(this);
});
$(".radioSelect").click(function(){
showSpecificFields(this);
});
function showSpecificFields(obj){
if($(obj).is(":checked")){
var radioVal = $(obj).val();
$(".fieldsSpecific").each(function(){
if($(this).attr('id') == radioVal){
$(this).show();
} else{
$(this).hide();
}
});
}
}
Jquery没有运行。任何人都可以帮助我吗?
答案 0 :(得分:0)
我正在Work Place开发此代码,我们无法使用Chrome。所以我使用<input type ="radio">
没有表单,在我的ModelAndView中单独处理Form部分。