怎么这样都是不包含啊?还测试了其他几种情况,传入参数为jquery对象,dom对象,明明有包含关系,但都显示不包含?
$(function () {
// var node_a = document.body.firstChild;
var node_a =document.getElementById("divtest");
// var node_b = document.body;
var node_b = document.getElementsByClassName("title");
var strTmp = "对象node_a";
if ($.contains(node_a,node_b)) { //检测是否包含节点
strTmp += " 包含 ";
}
else {
strTmp += " 不包含 ";
}
strTmp += "对象node_b";
$(".content").html(strTmp);
});