这是我的 demo.jsp 页面,因为我在文本框中输入数据并存储在 cookie 中,然后打印这些存储的 cookie,但最初 cookie 存储在浏览器中,当我打印这些值时,cookie 没有显示在浏览器中。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
<script>
function getData(){
var input=document.getElementById("txtbox").value;
//alert(input);
setCookie("TextDetails", input);
var TextDetails=getCookie("TextDetails");
//document.write("your input deatails:"+TextDetails);
}
function getCookie(name) {
var start = document.cookie.indexOf( name + "=" );
var len = start + name.length + 1;
if ( ( !start ) && ( name != document.cookie.substring( 0, name.length ) ) ) {
return null;
}
if ( start == -1 ) return null;
var end = document.cookie.indexOf( ";", len );
if ( end == -1 ) end = document.cookie.length;
return unescape( document.cookie.substring( len, end ) );
}
function setCookie(name, value) {
var now = new Date();
var time = now.getTime();
time += 3600 * 1000;
now.setTime(time);
document.cookie = name+"=" + value + '; expires=' + now.toUTCString() + ';domain='+window.location.hostname+';path=/';
}
</script>
</head>
<body>
<%
out.println("<table><tr><td>");
out.println("<input type='text' id='txtbox'>");
out.println("<input type='button' value='go'onclick='getData()'>");
out.println("</td></tr></table>");
%>
</body>
当我在 getData() 函数中放置没有注释的注释行时,cookie 没有存储,但我需要打印存储在浏览器中的那些 cookie。