Method One:
function GetSessionID () { var c_name = "Jsessionid"; Alert ("Cookie:" +document.cookie + " " + window.location.href); var hrefstr = window.location.href; if (Hrefstr.length > 0) { C_start = hrefstr.indexof (c_name + "=") if (c_start! =-1) { C_start = C_start + C_na me.length+1; C_end = Hrefstr.indexof ("?", C_start) if (c_end = =-1) c_end = hrefstr.length; Return hrefstr.substring (c_start,c_end); } }
Method Two:
Automatically gets to jsessionid directly through the Struts tag processing request
1:
<form action=<s:url action= "User/login"/> method= "post" id = "Frombut" > <input type= "hidden "Name=" user "value=" "id=" Users "></form>
2:
<s:url action= "User/userlogin" ><s:param name= "User.userid" value= "%{user.userid}"/> </s:url >
> Login </a>
Reference study: http://justsee.iteye.com/blog/831730
http://blog.csdn.net/wangjian5748/article/details/5096409
User Browser Close Cookie processing method