⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 script.js

📁 lynda.com 2007年出品的javascript essential training教学视频(Dori Smith主讲)的配套源码。
💻 JS
字号:
window.onload = showCookies;function showCookies() {	var outMsg = "";	if (document.cookie == "") {		outMsg = "There are no cookies here";	}	else {		var thisCookie = document.cookie.split("; ");		for (var i=0; i<thisCookie.length; i++) {			outMsg += "Cookie name is '" + thisCookie[i].split("=")[0];			outMsg += "', and the value is '" + thisCookie[i].split("=")[1] + "'<br />";		}	}	document.getElementById("cookieData").innerHTML = outMsg;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -