<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:
请告诉我哪里出错了。
答案 0 :(得分:1)
您可以尝试在引号中添加以下内容:
<%= "'"+ApplicationName.get(i)+"'" %>