我在javascript document.ready
函数中有一个变量:
<script type="text/javascript">
$(document).ready(function() {
var xxxx= $("#yyyy").val();
alert(xxxx);
});
</script>
我想在JSP文件中使用上面的xxxx
变量。这是我的JSP代码,它不起作用:
<c:choose>
<c:when test="${xxxx == 'type'}">
........
</c:when>
<c:otherwise>
.......
</c:otherwise>
</c:choose>
请告诉我在JSP文件中使用javascript变量的方法。