怎样把 javascript的数组值传给JSP?
<%@ page language="java" import="java.sql.*" %><%@ page contentType="text/html;charset=gb2312" %>
<jsp:useBean id="examBean" scope="page" class="create.crttb"/>
<html>
<head>
<title> </title>
<script Language="JavaScript">
function loaddatas()
{
idnum=parent.ids.length;
for(var j=0; j<idnum; j++)
{
alert(parent.ids[j]);
}
}
</script>
</head>
<body onload="loaddatas()">
<%
examBean.executeUpdate("CREATE TABLE idtb(id CHAR(50) not null, PRIMARY KEY(id))");
examBean.executeUpdate("INSERT INTO idtb VALUES('"+parent.ids[j]+"')");//这里应该怎么处理?
%>
</body>
</html>
这是我的源码,ids是一个字符串数组,想把它写到数据库里,但是不知道怎么把JAVASCRIPT的数组值传给JSP,请各位帮忙解决一下,在下万分感激!!!