js 어떤 대상 이 dom 대상 인지 판단

618 단어
<br>//    HTMLElement      ,       HTMLElement     ,        , Chrome,Opera HTMLElement    function,           
    var isDOM = ( typeof HTMLElement === 'object' ) ?
                function(obj){
                    return obj instanceof HTMLElement;
                } :
                function(obj){
                    return obj && typeof obj === 'object' && obj.nodeType === 1 && typeof obj.nodeName === 'string';
                }


 
다음으로 전송:https://www.cnblogs.com/camelroyu/p/5659929.html

좋은 웹페이지 즐겨찾기