我的jsp页面中有一个变量,我想将其作为参数传递给javascript函数。怎么做?
代码:-
<%
String ts=request.getParameter("testname");
session.setAttribute("tname", ts);
Connection con=null;
Statement s=null;
ResultSet r=null;
int t=60000;
try
{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
con=DriverManager.getConnection("jdbc:odbc:online_testing");
s=con.createStatement();
r=s.executeQuery("select * from "+ts+"");
String time=r.getString("duration");
t=Integer.parseInt(time)*60000;
}
catch(Exception e1)
{
response.setContentType("text/html");
out.println(e1.toString());
}
%>
<body onload="setTimeout('submitForm()',<%=t%>)">
它只取 t 的初始值,而不是更新后的值。如何将函数 setTimeout() 中变量“t”的值作为参数传递?