JavaScript로 HTML 페이지의 제목을 얻는 방법은 무엇입니까?


205

JavaScript로 HTML 페이지의 제목을 얻으려면 어떻게해야합니까?

답변:


335

사용 document.title:

console.log(document.title)
<title>Title test</title>

MDN 웹 문서


3
HTML5 버전;)<script>if (typeof(console.log) === "function") {alert(document.title);}</script>
OregonTrail

39
@OregonTrail wut ? console.log, 그렇다면 alert어쨌든?
Petah

3
<script>JavaScript에 관한 질문이 있으면 답변에 태그 를 포함시키는 것이 무엇입니까 ? 또한 typeattribute는 완전히 불필요 하며 IMHO console.log()는보다 디버깅에 훨씬 좋습니다alert() .
Michał Perłakowski

15

URL 표시 줄에 넣고 Enter를 클릭하십시오.

javascript:alert(document.title);

사용중인 웹 사이트 및 웹 브라우저에 따라 경고에서 텍스트를 선택하고 복사 할 수 있습니다.


6

사용할 수 있습니다 getElementsByTagName

var x = document.getElementsByTagName("title")[0];
alert(x.innerHTML)

3
이 답변은 HTML 문서를 파싱 할 때 유용합니다
Matt M.
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.