js 判断对象中是否包含某个属性

var obj = {name:'张三',age:18};
obj.hasOwnProperty('name'); // --> true

obj.hasOwnProperty('id'); // --> false

 

你可能感兴趣的