<script>
$("*", document.body).each(function () {//is document.body a context?
var parentTag = $(this).parent().get(0).tagName;
//Above statement is only selecting the body tag why?
$(this).prepend(document.createTextNode(parentTag + " > "));
});
</script>
</body>
</html>
在上面的脚本中只选择body标签有什么理由吗?document.body也是一个上下文吗?因为document.body没有被引用,它会是一个上下文吗?