코드:
결과보기 »
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title>JavaScript BOM Location Object</title> </head> <body> <h1>현재 문서의 호스트 이름</h1> <script> document.write("현재 문서의 호스트 이름은 " + location.hostname + "입니다."); </script> </body> </html>