2014年3月26日

cookie 操作(转载)

摘要: /** * Create a cookie with the given name and value and other optional parameters. * * @example $.cookie('the_cookie', 'the_value'); * @desc Set the value of a cookie. * @example $.cookie('the_cookie', 'the_value', {expires: 7, path: '/', domain: 'jquery.c 阅读全文

posted @ 2014-03-26 17:23 icelin 阅读(207) 评论(0) 推荐(0) 编辑

2014年3月21日

replace() 所有单词首字母大写

摘要: function ReplaceDemo() { var r,re; var s="The quick brown fox jumpe dover the lazy yellow dog."; re=/\b\w+\b/g; r=s.replace(re,function(ww){ return "("+ww.slice(0,1).toUpperCase()+ww.slice(1)+")"; } ); return(r); } 阅读全文

posted @ 2014-03-21 14:54 icelin 阅读(226) 评论(0) 推荐(0) 编辑

2014年3月20日

两种数据传输的方式——get和post。

摘要: Form提供了两种数据传输的方式——get和post。虽然它们都是数据的提交方式,但是在实际传输时确有很大的不同,并且可能会对数据产生严重的影响。虽然为了方便的得到变量值,Web容器已经屏蔽了二者的一些差异,但是了解二者的差异在以后的编程也会很有帮助的。1、Get是用来从服务器上获得数据,而Post是用来向服务器上传递数据。2、Get将表单中数据的按照variable=value的形式,添加到action所指向的URL后面,并且两者使用“?”连接,而各个变量之间使用“&”连接;Post是将表单中的数据放在form的数据体中,按照变量和值相对应的方式,传递到action所指向URL。3、 阅读全文

posted @ 2014-03-20 13:36 icelin 阅读(4023) 评论(0) 推荐(0) 编辑

2014年3月17日

知识点

摘要: 1. new Date.getYear();返回值:(默认为当前系统时间)114;返回当前年份减去1900,不同浏览器处理结果不同firefox chrome:返回当前年代减去1900IE和opear如果年份为1900-1999,返回时间减去1900,如:1980年得到getYear时间是80,不在此年份的时间,返回四位数,规避:用new Date.getFullYear()取代;2. epxpires 格式是GMT格式;toGMTString()或toUTCString(),现在推荐使用toUTCString()方法。3.当需要判断一个变量是否为 undefined 时,直接用Js代码 a. 阅读全文

posted @ 2014-03-17 16:17 icelin 阅读(220) 评论(0) 推荐(0) 编辑

一道变态的Javascript面试题

摘要: 转载http://cymoft.blog.51cto.com/324099/1260099123456789f =function() {returntrue;};g =function() {returnfalse;};(function() {if(g() && [] == ![]) {f =functionf() {returnfalse;};functiong() {returntrue;}}})();alert(f());// true or false ?此题的关键是第4行的if条件g() && [] == ![]这里有三个关键的点,第一,g()在这 阅读全文

posted @ 2014-03-17 15:54 icelin 阅读(450) 评论(1) 推荐(0) 编辑

导航