首页 > 代码库 > 每天一个JavaScript实例-cookie的使用方法

每天一个JavaScript实例-cookie的使用方法

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>每天一个JavaScript实例-cookie的使用方法</title>
<style>
	div{margin:5px;}
</style>

<script>
window.onload = function(){
	if(navigator.cookieEnabled){
		document.getElementById("set").onclick = setCookie;
		document.getElementById("get").onclick  = getCookie;
		document.getElementById("erase").onclick  = eraseCookie;
	}

}
function setCookie(){
	var cookie = document.getElementById("cookie").value;
	var value  =http://www.mamicode.com/document.getElementById("value").value;>

每天一个JavaScript实例-cookie的使用方法