With¹®¿¹Á¦

with()¹®Àº ()¼ÓÀÇ °´Ã¼¸¦ Âü°íÇÏ¿© °´Ã¼À̸§À»
°è¼ÓµÈ ³ª¿­ ¾øÀÌ ¸Þ¼Òµå³ª ÇÁ·ÎÆÛƼ¸¸À» ¾²µµ·Ï ÇØ ÁÝ´Ï´Ù.
¾Æ·¡ÀÇ ¿¹Á¦´Â document °´Ã¼¸¦ Âü°íÇÏ´Â with ¹® ¿¹Á¦ÀÔ´Ï´Ù.

with ¹® ¿¹Á¦

<script language="javaScript">
<!--

function f()
{
  with(document)
      {
        write("document¸¦ ¾²Áö ¾Ê°í ±Û¾²±â")
        write("<p>")
        write("µÎ¹ø° ¶óÀÎ<br>")
        write("document¸¦ ¾²Áö ¾ÊÀ¸´Ï Æí¸®ÇÏÁÒ?")
      }
}

-->
</script>


[°á°ú º¸±â(Click !!)]