欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

cookie的复制与使用记住用户名实现代码

程序员文章站 2023-11-17 09:36:34
代码如下:

代码如下:


<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "https://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="scripts/jquery-1.10.2.min.js" type="text/javascript"></script>
<script src="scripts/jquery.cookie.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
if ($.cookie("username")) {
$("#user").val($.cookie("username"));

}

$("#login").click(function () {
$.cookie("username", $("#user").val(), { expires: 7 }); //{ expires: 7 }的意思是让cookie保存7天
})
})
</script>
</head>
<body>
<input type="text" id="user" />
<input type="button" id="login" value="提交" />
</body>
</html>