gpt4 book ai didi

java - 在没有任何事件的情况下禁用下拉列表

转载 作者:太空宇宙 更新时间:2023-11-04 12:03:33 30 4
gpt4 key购买 nike

我有一个 jsp,想要使用 scriplet 禁用下拉列表,而下拉菜单中没有任何 onclick 方法或事件

         <%
boolean something= true;
if(something){
// here I want to get plc1 using id and want to disable it if it is true
}else{
//do some thing
}
%>

我的下拉 html 代码在这里

<td bgcolor='' align="center" ><select id = "plc1" name="place1" onclick="this.parentNode.style.backgroundColor = this.value">
<option value='red'>Park here</option>
<option value='green'>Cancel</option>
</select></td>

怎么办呢?有什么提示吗?

最佳答案

只需使用 disabled属性:<select id="plc1" disabled>

<%
String state = "";
if(something){
state = "disabled";
}
%>

<select id="plc1" <%= state %>>

关于java - 在没有任何事件的情况下禁用下拉列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40653624/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com