将arraylist转换为jsp数组时出现jsp异常

时间:2015-02-26 21:15:49

标签: jquery jsp struts

<script>
  var availableTags = [
    <% for (int i = 0; i < ApplicationName.size(); i++) { %>
      <%= ApplicationName.get(i) %>
      <%= i + 1 < ApplicationName.size() ? ",":"" %>
    <% } %>
  ];

  $(function() {
    $( "#tags" ).autocomplete({
      source: availableTags
    });
  });

  function value()
  {
    alert(document.getElementById('tags').value);
    var a=document.getElementById('tags').value;
    return a;
  }
</script>

它给出了以下错误:

Struts has detected an unhandled exception:

请告诉我哪里出错了。

1 个答案:

答案 0 :(得分:1)

您可以尝试在引号中添加以下内容:

<%= "'"+ApplicationName.get(i)+"'" %>