我想根据Spring bean中存在的值禁用HTML按钮。我正在使用JSTL empty属性,但没有运气。
这是我的代码

   <input type="submit" value="SendEmail" disabled="${empty reportNotificationFbo.providersList}" >

这里reportNotificationFbo是spring bean,而providersList是一个列表。

如果Submit为空,我想禁用providersList按钮。

-谢谢。

最佳答案

按钮的状态由disabled属性的存在而不是其值控制。请尝试以下方法:

<input type="submit" value="SendEmail"
    "${(empty reportNotificationFbo.providersList) ? 'disabled' : ''}" >

10-06 01:10