【发布时间】:2016-08-01 10:48:03
【问题描述】:
我有一个 div 标签,样式为 none,id 为 ack。在 if 核心标签中,我需要访问 div id 并需要显示消息。
<body>
<div class="alert alert-success" id="ack"
style="display: none" align="center">
</div>
<c:if test="${LegacyDataForm.petDetails ne null}">
//how to access div id from here
</c:if>
</body>
【问题讨论】: