session设置:
session.setAttribute("username",username)
session.setAttribute("password",password)
session获取:
username=session.getAttribute("username")
password=session.getAttribute("password")
因为Session是保存在服务端的,js只能通过ajax读取Session。不过一般也不建议这么做,你可以把前端验证码输入的值传给后端,后端判断是否正确,返回是否正确就行了。因为你直接把验证码发给前端,这样就可以使用js得到验证码,并自动输入,就失去验证码的意义了。JScript code
var id = '<%=Session["UserName"] %>'
混写就OK了。