JAVA,JSP怎么根据后台传的值判断是否禁用某个按钮
比如我在后台传了一个值a到前端JSP中如果a=1就禁用该JSP中的某个按钮如果a=2该按钮就正常显示...
比如我在后台传了一个值a到前端JSP中
如果a=1 就禁用该JSP中的某个按钮
如果a=2 该按钮就正常显示 展开
如果a=1 就禁用该JSP中的某个按钮
如果a=2 该按钮就正常显示 展开
1个回答
展开全部
<html>
<head>
<script type="text/javascript">
var a = <%=a%>
function disable()
{
if(1 == a){
document.getElementById("gnome").disabled=true ;
}
if(2 == a){
document.getElementById("gnome").disabled=false;
}
}
</script>
</head>
<body>
<form>
Human: <input id="human" type="radio" name="creature" value="Human" />
<br />
Animal: <input id="animal" type="radio" name="creature" value="Animal" />
<br />
Gnome: <input id="gnome" type="radio" name="creature" value="Gnome" />
<br /><br />
<input type="button" onclick="disable()" value="Disable choice" />
</form>
</body>
</html>
<head>
<script type="text/javascript">
var a = <%=a%>
function disable()
{
if(1 == a){
document.getElementById("gnome").disabled=true ;
}
if(2 == a){
document.getElementById("gnome").disabled=false;
}
}
</script>
</head>
<body>
<form>
Human: <input id="human" type="radio" name="creature" value="Human" />
<br />
Animal: <input id="animal" type="radio" name="creature" value="Animal" />
<br />
Gnome: <input id="gnome" type="radio" name="creature" value="Gnome" />
<br /><br />
<input type="button" onclick="disable()" value="Disable choice" />
</form>
</body>
</html>
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询