jsはあるオブジェクトがdomオブジェクトかどうかを判断します.

607 ワード

<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