在JavaScript中使用El

时间:2013-07-31 09:21:45

标签: javascript el

如何在JavaScript中使用El标签? 我不想在javascript函数中使用class作为标识符 我想在Javacript中使用El表达式 下面的代码是工作正常唯一的问题是我不明白如何使用El代替 在javascript中的id。请帮帮我

<html>

    <c:forEach items="${studentsList.students}"
        var="student">

    <script type="text/javascript">
    $(document).ready(function(){
      $( here i want to use el value as id ).keyup(function(){

    //do something

      });

});
</script> 

</c:forEach>


//Dynamic list of input boxes each having id of particular student

<c:forEach items="${studentsList.students}"
    var="student">
<input type="text" id="{student.id}">

</c:forEach>


</html>

1 个答案:

答案 0 :(得分:0)

$("<c:out value="${yourVariable}"/>").keyup(function(){

    //do something

});