摘要: 1 //设置COOKIE值 2 function setCookie(sName,sValue,oExpires,sPath,sDomain,bSecure) 3 { 4 var sCookie = sName + "=" + encodeURIComponent(sValue); 5 6 if(oExpires) { sCookie += "; expires="... 阅读全文
posted @ 2017-08-30 11:11 Panxl 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 1 $('#userinfo').delegate('input[type=text]','blur',function(){ 2 var flag = 0, 3 arr = '', 4 str = $(this).val(); 5 str =... 阅读全文
posted @ 2017-08-30 10:52 Panxl 阅读(107) 评论(0) 推荐(0) 编辑