我有一個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>
怎麼做?請提出任何提示?
您將需要在線小腳本,比如'禁用=「<%=東西%>「',JavaEL像'disabled =」$ {something}「'或者在if和el中有不同的select聲明E-分支機構。 – Thomas
不,在這種情況下,無論是真是假,總是禁用 –