在jsp request.getAttribute方法中嵌入javascript变量

时间:2015-07-17 19:52:30

标签: javascript jsp

这是我用于填充模式的javascript代码,点击表格行。我想要做的是,从后端的struts动作中获取对象的各种属性。但是为了从产品列表中获取要获取的产品的确切索引,我需要将所单击的行的id嵌入到request.getAttribute方法中。

<script type="text/javascript">
     $('table tbody tr  td').on('click', function () {
     $("#productModal").modal("show");

     $("#prodDet1").text("ID : " + $(this).closest('tr').children()  [1].textContent);

     $("#prodDet2").text("Name : " + $(this).closest('tr').children()[2].textContent);

     //This is where I store the table row id (in var foo)
     var foo = $(this).closest('tr').children()[0].textContent;

     // I want to do something like this
     $("#prodDet4").text("Stock count : " + <%= request.getAttribute("productList.get(" + foo + ").stock") %> );                                          


    document.getElementById("prodDet3").src = "http://localhost:8080/Rest/Flipkart/ImageServices/Image/" + $(this).closest('tr').children()[1].textContent;
 });

</script>

那么如何将foo的值嵌入到getAttribute调用中呢?

0 个答案:

没有答案