您好,欢迎访问一九零五行业门户网

JavaScript里实用的原生API汇总_javascript技巧

直接进入正题
解析字符串对象
我们都知道,javascript对象可以序列化为json,json也可以解析成对象,但是问题是如果出现了一个既不是json也不是对象的东西,转成哪一方都不方便,那么eval就可以派上用场
var obj = {a:1,b:2}; // 看起来像对象的字符串eval((+ obj +)) // {a: 1, b: 2}
因为 eval 可以执行字符串表达式,我们希望将 obj 这个字符串对象 执行成真正的对象,那么就需要用eval。但是为了避免eval 将带 {} 的 obj 当语句来执行,我们就在obj的外面套了对 (),让其被解析成表达式。
& (按位与)
判断一个数是否为2的n次幂,可以将其与自身减一相与
var number = 4(number & number -1) === 0 // true
^ (按位异或)
不同第三个变量,就可以交换两个变量的值
var a = 4,b = 3a = a ^ b // 7b = a ^ b // 4a = b ^ a // 3
格式化date
想得到format后的时间?现在不用再get年月日时分秒了,三步搞定
var temp = new date();var regex = /\//g;(temp.tolocaledatestring() + ' ' + temp.tolocaletimestring().slice(2)).replace(regex,'-');// 2015-5-7 9:04:10
想将format后的时间转换为时间对象?直接用date的构造函数
new date(2015-5-7 9:04:10);// thu may 07 2015 09:04:10 gmt+0800 (cst)
想将一个标准的时间对象转换为unix时间戳?valueof搞定之
(new date).valueof();// 1431004132641
许多朋友还提醒了这样可以快速得到时间戳
+new date
一元加
一元加可以快速将字符串的数字转换为数学数字,即
var number = 23 typeof number // stringtypeof +number // number
可以将时间对象转为时间戳
new date // tue may 12 2015 22:21:33 gmt+0800 (cst)+new date // 1431440459887
转义uri
需要将url当做参数在路由中传递,现在转义之
var url = encodeuricomponent('http://segmentfault.com/questions/newest')// http%3a%2f%2fsegmentfault.com%2fquestions%2fnewest
再反转义
decodeuricomponent(url)// http://segmentfault.com/questions/newest
number
希望保留小数点后的几位小数,不用再做字符串截取了,tofixed拿走
number.tofixed() // 12346number.tofixed(3) // 12345.679number.tofixed(6) // 12345.678900
参数范围为0~20,不写默认0
类型检测
typeof是使用最频繁的类型检测手段
typeof 3 // numbertypeof 333 // stringtypeof false // boolean
对于基本(简单)数据类型还是挺好的,但是一旦到了引用数据类型的时候,就不那么好使了
typeof new date() // objecttypeof [] // objecttypeof {} // objecttypeof null // object
前三个还能忍,null居然也返回object,你是在逗我吗!!!(ps:其实这是javascript的bug 人艰不拆 ꒰・◡・๑꒱ )
这时,我们会使用instanceof
tostring instanceof function// true(new date) instanceof date// true[] instanceof object// true[] instanceof array// true
其实我们可以发现,[] 和 object得到了true,虽然我们知道,[]也是对象,但是我们希望一个能更准确的判断类型的方法,现在它来了
使用object.prototype.tostring()来判断,为了让每一个对象都能通过检测,我们需要使用function.prototype.call或者function.prototype.apply的形式来调用
var tostring = object.prototype.tostring;tostring.call(new date) // [object date]tostring.call(new array) // [object array]tostring.call(new object) // [object object]tostring.call(new number) // [object number]tostring.call(new string) // [object string]tostring.call(new boolean) // [object boolean]
要注意的是:tostring方法极有可能被重写,所以需要使用的时候,
可以直接使用object.prototype.tostring()方法
实现继承
看一个官方给的例子
//shape - superclassfunction shape() { this.x = 0; this.y = 0;}shape.prototype.move = function(x, y) { this.x += x; this.y += y; console.info(shape moved.);};// rectangle - subclassfunction rectangle() { shape.call(this); //call super constructor.}rectangle.prototype = object.create(shape.prototype);var rect = new rectangle();rect instanceof rectangle //true.rect instanceof shape //true.rect.move(1, 1); //outputs, shape moved.
通过call来获取初始化的属性和方法,通过object.create来获取原型对象上的属性和方法
迭代
es5出了挺多的迭代函数,如map,filter,some,every,reduce等
array
具体的api这里介绍的很详细。
https://developer.mozilla.org/zh-cn/docs/web/javascript/reference/glob...
这里就提几句:
join,pop,push,reverse,shift,sort,splice,unshift会改变原数组
concat,indexof,lastindexof,slice,tostring不会改变原数组
map,filter,some,every,reduce,foreach这些迭代方法不会改变原数组
几个注意点:
1 shift,pop会返回那个被删除的元素
2 splice 会返回被删除元素组成的数组,或者为空数组
3 push 会返回新数组长度
4 some 在有true的时候停止
5 every 在有false的时候停止
6 上述的迭代方法可以在最后追加一个参数thisarg,它是执行 callback 时的 this 值。
以上所述就是本文的全部内容了,希望大家能够喜欢。
其它类似信息

推荐信息