我想在jsp的文本字段中显示值。我已经从jsp页面的数据库中获取了值,现在我想在文本字段中显示onblur方法调用。
<%!Connection con; %>
<%!Statement s; %>
<%!ResultSet rs; %>
<% String cnic=request.getParameter("id");
try{
Class.forName("com.mysql.jdbc.Driver");
con=DriverManager.getConnection("jdbc:mysql://localhost/test","root","");
s=con.createStatement();
rs=s.executeQuery("select * from info where cnic='"+cnic+"'");
}catch(Exception e){ e.printStackTrace(); }
%>
<% while(rs.next())
{ %>
<%=rs.getString("first_name")%>
<%=rs.getString("last_name")%>
<%=rs.getString("gender")%>
<%=rs.getString("cnic")%>
<%=rs.getString("date_of_birth")%>
<%=rs.getString("institute")%>
<%=rs.getString("department")%>
<%=rs.getString("degree_level")%>
<%=rs.getString("programe")%>
<%=rs.getString("year")%>
<% } %>
<input type="text" onblur="Ajax(this.value);" />
<input type="text" />
<input type="text" />
我们如何在这些文本字段中显示值