我想在用户点击特定的框时显示 html 代码。
当用户从其中一个可用选项中选择一个值时,将调用一个JavaScript函数,该函数将所选值存储在变量中。
我在实现代码时难以将 EL 变量的值与 innerHTML 变量进行比较。
以下是我目前使用的代码:
var groupid = parseInt($('#selectgroup').val());
document.getElementById("facilityTable").innerHTML= "<c:forEach var='group'
items='${groups}'>"+
"<c:if test='${group.key == (groupid)}'>"+
"<td>+Test+${group.value.groupName}</td>"+
"<td>${group.value.groupId}</td>" +
"</c:if>"+
"</c:forEach>";
答案 0 :(得分:0)
您的 JSTL 标记不会是 JS 输出的一部分,因此没有理由将它们放入引号中,例如:
document.getElementById("facilityTable").innerHTML= ""
<c:forEach var='group' items='${groups}'>
<c:if test='${group.key == (groupid)}'>
+ "<td>+Test+${group.value.groupName}</td>"+
"<td>${group.value.groupId}</td>"
</c:if>
</c:forEach>;
答案 1 :(得分:0)
使用javascript
设置为jstl变量值<script>
function function1()
{
<c:set var="temp" value=""/>
temp="Hello";
alert(temp);
}
</script>