jsp的问题 把cookie中的呢称如何放入<input type=text size=10 name=nick>这个html元素中
jsp的问题
把cookie中的呢称如何放入 <input type=text size=10 name=nick> 这个html元素中
<%
Cookie cookie[]=request.getCookies();
Cookie scookie=null;
String sname=null;
String svalue=null;
if (cookie!=null )
{
scookie=cookie[1];
svalue=scookie.getValue();
把svalue放入 <input type=text size=10 name= "nick "> 这个html元素中
}
%>
------解决方案--------------------用document对象