<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <script src="jquery-1.3.2-vsdoc.js" type="text/javascript"></script>
    <script src="jquery.cookie.js" type="text/javascript"></script>
    <script type="text/javascript">
        $(function() {
            $("#setcookie").click(function() {
                $.cookie("test", "chenxizhang");
            });

            $("#getcookie").click(function() {
                alert($.cookie("test"));
            });
        });
    </script>
</head>
<body>
    <form />
    </form>
</body>
</html>

相关文章:

  • 2021-11-26
  • 2021-07-13
  • 2022-12-23
  • 2021-10-22
  • 2021-09-17
  • 2021-05-28
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-06-13
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-17
相关资源
相似解决方案