0

这是我的 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。

4

2 回答 2

0

你可以尝试使用localStorage。当您需要将数据存储在客户端时,它比 Cookie 更好。

于 2014-05-21T09:10:05.883 回答
0

代替注释代码 //document.write("your input deatails:"+TextDetails); 通过编写这一行 document.getElementById("CookieDetail").innerHTML=TextDetails; 使用 id CookieDetail 在 body 中创建一次潜水。现在数据将根据我们的要求打印。

于 2014-05-23T09:56:26.063 回答