jQuery--- .hasOwnProperty 用法
Posted 雪洗中关村
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery--- .hasOwnProperty 用法相关的知识,希望对你有一定的参考价值。
☆ obj.hasOwnProperty(‘prop‘): 是用来判断一个对象是否有你给出名称的属性或对象。不过需要注意的是, 此方法无法检查该对象的原型链中是否具有该属性,该属性必须是对象本身的一个成员。 <script type="text/javascript"> var obj = { a: 1, fn: function(){ }, c:{ d: 5 } }; console.log(obj.hasOwnProperty(‘a‘ )); //true console.log(obj.hasOwnProperty(‘fn‘ )); //true console.log(obj.hasOwnProperty(‘c‘ )); //true console.log(obj.c.hasOwnProperty(‘d‘)); //true console.log(obj.hasOwnProperty(‘d‘ )); //false, obj对象没有d属性 var str = new String(); console.log(str.hasOwnProperty(‘substring‘));//false console.log(String.prototype.hasOwnProperty(‘substring‘));//true </script>
以上是关于jQuery--- .hasOwnProperty 用法的主要内容,如果未能解决你的问题,请参考以下文章