码迷,mamicode.com
首页 > Web开发 > 详细

转js contains 方法

时间:2014-09-12 14:44:43      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   ar   div   sp   cti   

function Jcontains(root, el) { 
    if (root.compareDocumentPosition) 
        return root === el || !!(root.compareDocumentPosition(el) & 16); 
        if (root.contains && el.nodeType === 1){ 
            return root.contains(el) && root !== el; 
    } 
    while ((el = el.parentNode)) 
    if (el === root) return true; 
    return false; 
} 

 

转js contains 方法

标签:style   blog   color   io   os   ar   div   sp   cti   

原文地址:http://www.cnblogs.com/llqfront/p/3968231.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!