发布时间:2023-12-12 06:54来源:www.sf1369.com作者:宇宇
1. document.cookie = 'a=b&c=d'; //两个Cookie
2.取 str = document.cookie 好吧,不用做好的函数你就操作这个字符串吧,split,然后数组;
3.定义 document.cookie = 'a=b&c=d&e=d'; 就这么定义
4.前台和后台没啥区别,cookie在客户端,用户可以伪造。 看情况而定,你的判断代码在php或者java这些服务端时,用后台程序。在html静态页面要操作cookie用前台。看需求而已
var css='.myclass{color:red;}';
style.add(css) ;
$.styleSheet&&($.styleSheet.cssText+=css)||$.appendChild(D.createTextNode(css));
相当于
if($.styleSheet)
{
$.styleSheet.cssText+=css;
}else{
$.appendChild(D.createTextNode(css));
}