JS公共小方法之判断对象是否为domElement

function isDOMElement(obj) {
		  return !!(obj && typeof window !== 'undefined' && (obj === window || obj.nodeType));
		}

你可能感兴趣的:(js/jquery)