ボタンの代わりに href を使用して入力データを渡したい。問題は、配列を送信していることです。入力データが格納されているため、複数のリンクが作成される for ループです。これを修正するために取るべき行動方針は何ですか。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Firstjsp</title>
</head>
<body>
<% String locations[] = {"Loan 1", "33.890542", "151.274856", "Address 1","true", "-35404.34"};
for (int i =0; i<locations.length; i++)
{
%>
<form name="submitForm" method="POST" action="Mapper.jsp">
<Input type = "Hidden" name = "loc" value = "<%= locations[i] %>">
<A HREF="Mapper.jsp">View Map</A>
</form>
<%
}
%>
</body>
</html>