发布时间:2013-12-24 00:15:38
//内置对象var box="//Lee李";var a=encodeURI(box);var b=encodeURIComponent(box);alert(a);alert(b);alert(decodeURI(a));alert(decodeURIComponent(b));......【阅读全文】
发布时间:2013-12-23 23:40:41
//基本包装类型//Boolean//Number//String/*var box='Mr.Lee';alert(box.substring(2)); //从第三个位置开始截取字符串//alert(typeof('Mr.Lee'));*//*var box='Mr.Lee';box.name='hans';box.age=function(){ return 100;}alert(box);alert(typeof(box));//alert(box.name);//*///Stringv.........【阅读全文】
发布时间:2013-12-23 17:24:06
//function类型//1.函数可以传递函数function box(sum,num){return sum+num;}function sum(num){return num+10;}var result=box(sum(10),10);alert(result);//arguments.calleefunction box(num){if(num......【阅读全文】
发布时间:2013-12-23 15:29:56
//Date类型//创建日期和时间对象/*var box= new Date();//构造方法里可以传参数,没传参数默认是当前时间alert(box);*//*alert(Date.parse('4/12/2013'));//返回的毫秒数var box=new Date(Date.parse('4/12/2013'));//直接放日期的毫秒数也可以alert(box);*//*var box=new Date('12/23/2013');alert(box);*/.........【阅读全文】