我有一个JSP,其中下拉选项实现为:
<html:select property="ComplayDetail">
<html:options collection="companyList" name="companyAttribute" property="attribute" />
</html:select>
此下拉选项具有动态添加的值,如ABC,CDE,DEF,EfG .... 现在我想做一个选项,即DEF禁用。
任何人都可以帮我实现这个目标吗?
答案 0 :(得分:0)
我认为jquery喜欢:
$("#selectId > option").each(function() {
var currentvalue=$(this).val();
if(currentvalue == "DEF")
{
this.disabled=true;
}
});