function isHostMethod(object, property) {
var t = typeof object[property];
return t == 'function' || (!!(t == 'object' && object[property])) || t == 'unknown';
}
alert(isHostMethod(window , "find")); //IE中弹出false ,firefox 中弹出true