亚洲免费在线视频-亚洲啊v-久久免费精品视频-国产精品va-看片地址-成人在线视频网

您的位置:首頁技術文章
文章詳情頁

js屬性對象的hasOwnProperty方法的使用

瀏覽:108日期:2024-04-06 09:19:43

Object的hasOwnProperty()方法返回一個布爾值,判斷對象是否包含特定的自身(非繼承)屬性。

判斷自身屬性是否存在

var o = new Object();o.prop = ’exists’;function changeO() { o.newprop = o.prop; delete o.prop;}o.hasOwnProperty(’prop’); // truechangeO();o.hasOwnProperty(’prop’); // false判斷自身屬性與繼承屬性

function foo() { this.name = ’foo’ this.sayHi = function () { console.log(’Say Hi’) }}foo.prototype.sayGoodBy = function () { console.log(’Say Good By’)}let myPro = new foo()console.log(myPro.name) // fooconsole.log(myPro.hasOwnProperty(’name’)) // trueconsole.log(myPro.hasOwnProperty(’toString’)) // falseconsole.log(myPro.hasOwnProperty(’hasOwnProperty’)) // fasleconsole.log(myPro.hasOwnProperty(’sayHi’)) // trueconsole.log(myPro.hasOwnProperty(’sayGoodBy’)) // falseconsole.log(’sayGoodBy’ in myPro) // true遍歷一個對象的所有自身屬性

在看開源項目的過程中,經常會看到類似如下的源碼。for...in循環對象的所有枚舉屬性,然后再使用hasOwnProperty()方法來忽略繼承屬性。

var buz = { fog: ’stack’};for (var name in buz) { if (buz.hasOwnProperty(name)) { alert('this is fog (' + name + ') for sure. Value: ' + buz[name]); } else { alert(name); // toString or something else }}注意 hasOwnProperty 作為屬性名

JavaScript 并沒有保護 hasOwnProperty 屬性名,因此,可能存在于一個包含此屬性名的對象,有必要使用一個可擴展的hasOwnProperty方法來獲取正確的結果:

var foo = { hasOwnProperty: function() { return false; }, bar: ’Here be dragons’};foo.hasOwnProperty(’bar’); // 始終返回 false// 如果擔心這種情況,可以直接使用原型鏈上真正的 hasOwnProperty 方法// 使用另一個對象的`hasOwnProperty` 并且call({}).hasOwnProperty.call(foo, ’bar’); // true// 也可以使用 Object 原型上的 hasOwnProperty 屬性Object.prototype.hasOwnProperty.call(foo, ’bar’); // true

參考鏈接

到此這篇關于js屬性對象的hasOwnProperty方法的使用的文章就介紹到這了,更多相關js hasOwnProperty內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!

標簽: JavaScript
相關文章:
主站蜘蛛池模板: 久久亚洲精品中文字幕二区 | 国产日韩欧美swag在线观看 | 久青草国产在线 | 亚洲综合无码一区二区 | 香蕉网站狼人久久五月亭亭 | 国产精品美女免费视频大全 | 永久网站色视频在线观看免费 | 亚洲自偷 | 热久久伊人 | 九九久久免费视频 | 伊人狠狠丁香婷婷综合色 | 伊人狼人影院 | 成人污网站 | 日本视频在线观看不卡高清免费 | 国产精品欧美一区二区三区不卡 | 国产一区二区精品久 | 亚洲日本在线观看视频 | 欧美日本亚洲国产一区二区 | a级黄色毛片免费播放视频 a级精品九九九大片免费看 | 国产精品久久久久无码av | 中文无码日韩欧免费视频 | 欧美亚洲日本韩国一级毛片 | 4455四色永久免费 | 亚洲精品第五页中文字幕 | 老司机亚洲精品影院 | 中文字幕一区二区视频 | 毛片大片免费看 | 亚洲精品无码专区在线播放 | 京野结衣免费一区二区 | 国产一区二区三区精品久久呦 | 久久精品国产这里是免费 | 亚洲综合久久综合激情久久 | 亚洲aⅴ在线 | 欧美巨大精品欧美一区二区 | 国产视频成人 | 亚洲国产成人综合 | 男人透女人超爽视频免费 | 日本尹人综合香蕉在线观看 | 香港三级88久久经典 | 国产www| 国产成人成人一区二区 |