<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 は引用されていないため、コンテキストになりますか?