在JSP文件中使用Javascript变量

时间:2015-05-21 10:08:13

标签: javascript jquery jsp jsp-tags

我在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变量的方法。

0 个答案:

没有答案