从jstl核心标签访问div id?

时间:2016-08-01 10:48:04

标签: jquery html jsp jstl

我有一个div标签,样式为none,id为ack.With in if core tag我需要访问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>

1 个答案:

答案 0 :(得分:1)

你可以这样做:

<body>
<div class="alert alert-success" id="ack" style="display: none" align="center">
</div>

<c:if test="${LegacyDataForm.petDetails ne null}">
<script>
//how to access div id from here
var myDiv = document.getElementById("ack");
myDiv.style.display = "block";
myDiv.innerHTML = "My message!";
</script> 
</c:if>
</body>

如果您已经使用过jquery,可以使用它。