分享

求大神指教,为嘛编译出错

 昵称29551440 2015-12-10
<html>
<head>
<title>Learncookie 2015年12月10日 21:07:25</title>
<script language="JavaScript">
function setCookie(name,value) 
<!--设定函数cookie有两个参数,一个是cookie的名字,一个是cookie的值-->
{
var days = 30;    //cookie的有效期为30天
var exdate = new Date();
exdate.setDate(exdate.getDate() + days);
document.cookie = name+"="+escape(value)+";expires="+exdate.toGMTstring();
alert(document.cookie);
}

function getCookie(name)
{
if (document.cookie.length>0)
{
start = document.cookie.indexOf(name + "=");   // 此代码含义是找到cookie名称的位置
if (start!=-1)
{
start = start + name.length+1
end = document.cookie.indexOf(";",start);
if (end==-1)
end=document.cookie.length;
return unescape(document.cookie.substring(start,end));
}
}
return"";
}


function checkCookie()
{
user_name=getCookie("user_name");
if(user_name!=null&&user_name!="")
{
alert("欢迎您,"+user_name+"!");
}
else
{
user_name=prompt("请输入您的名字:",");
if (user_name!=null&&user_name!="") 
{
setCookie("user_name",user_name);
}
}
}

</script>
</head>

<body onload="checkCookie()"></body>
</html>

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约