asp让某个已经已经有的按钮隐藏或者不能让表单提交
<inputtype="button"value="提交"name="Close"ONCLICK='datacheck()'>这是我已经有的按钮,我想通过判断,让他在特定...
<input type="button" value="提 交" name="Close" ONCLICK='datacheck()'>这是我已经有的按钮,
我想通过判断,让他在特定的条件下变成隐藏或者不能让表单提交 展开
我想通过判断,让他在特定的条件下变成隐藏或者不能让表单提交 展开
1个回答
展开全部
如果希望在服务端判断可以这样:
<%
if 条件=真 then
response.write "<input type='button' value='提交' name='close' onclick='datacheck()'/>"
else
'这里不写就什么也没有了
end if
%>
如果希望在客户端判断,则需要在JS中写:
<input type="button" value="提 交" id="Close" name="Close" ONCLICK='datacheck()'>
注意,这里增加了一个ID
<script>
if(条件){
document.getElementById("Close").style.display="":
}else{
document.getElementById("Close").style.display="none"://隐藏
如果要不可操作也可改 disabled
}
</script>
<%
if 条件=真 then
response.write "<input type='button' value='提交' name='close' onclick='datacheck()'/>"
else
'这里不写就什么也没有了
end if
%>
如果希望在客户端判断,则需要在JS中写:
<input type="button" value="提 交" id="Close" name="Close" ONCLICK='datacheck()'>
注意,这里增加了一个ID
<script>
if(条件){
document.getElementById("Close").style.display="":
}else{
document.getElementById("Close").style.display="none"://隐藏
如果要不可操作也可改 disabled
}
</script>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |