如何在 Html 文件上设置 Cookie?

How to set Cookies on Html file?

Enyone 帮助我如何在本地 html 文件中插入带有值和特定站点域的 cookie 名称?

任何方法将不胜感激。

这是关于 Javascript 上 cookie 实施的文档:http://www.w3schools.com/js/js_cookies.asp

我还建议您使用 HTML5 网络存储实现 localStorage。方法简单易懂。

localStorage.setItem("myName", "Jhon Sapiera");
//set a new local storage variable.

alert(localStorage.getItem("myName"));
//get the variable - use it.

阅读全部内容:http://www.w3schools.com/html/html5_webstorage.asp