Skip to content

Instantly share code, notes, and snippets.

@elrrrrrrr
Created August 18, 2014 08:44
Show Gist options
  • Save elrrrrrrr/dea04845eb2a6b70d315 to your computer and use it in GitHub Desktop.
Save elrrrrrrr/dea04845eb2a6b70d315 to your computer and use it in GitHub Desktop.
js对象属性检测
// 好的写法
if ('count' in object)
//判断DOM对象 IE8之前 DOM对象不从Object对象继承 需要判断
//判断实例需要使用hasOwnProperty
if (object.hasOwnProperty("related")) {
//非dom对象
}
if ("hasOwnProperty" in object && object.hasOwnProperty("related")) {
//兼容IE8
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment