You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
580 B

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="jquery.2.1.1.min.js"></script>
<script type="text/javascript" src="jquery.cookie.js"></script>
<script>
$.cookie('uid', 'dsideal');
</script>
</head>
<body>
<p>
<input type="button" value="test" id="getCookie" onclick="test();" />
</p>
</body>
<script>
$(function () {
$.cookie('aaaa', '333331');
$("#getCookie").click(function () {
alert( $.cookie('aaaa'));
});
});
</script>
</html>