>  기사  >  웹 프론트엔드  >  js에서 html 제목을 수정하는 방법

js에서 html 제목을 수정하는 방법

青灯夜游
青灯夜游원래의
2021-09-03 16:53:367134검색

js에서 html 제목을 수정하는 방법: 1. "document.title="value that need to be set";" 문을 사용합니다. 2. "$('title').html('value that need to be set"을 사용합니다. set')" 또는 " $('title').text('설정할 값')" 명령문입니다.

js에서 html 제목을 수정하는 방법

이 튜토리얼의 운영 환경: windows7 시스템, javascript1.8.5&&jquery1.7.2 버전, Dell G3 컴퓨터.

방법 1: document.title 방법

테스트 후 document.title을 통해 title 값을 설정할 수도 있습니다.

document.title = '需要设置的值';

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>hello</title>
	</head>
	<body>
		<script type="text/javascript">
			document.title = &#39;php中文网&#39;;
		</script>
	</body>
</html>

js에서 html 제목을 수정하는 방법

방법 2: jQuery의 html() 또는 text() 메서드 사용

물론 프로젝트가 jQuery에 의존하는 경우 jq의 메서드 설정을 사용할 수 있습니다.

두 가지 방법 모두 jq

$(&#39;title&#39;).html(&#39;需要设置的值&#39;)
$(&#39;title&#39;).text(&#39;需要设置的值&#39;)

Example

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>hello</title>
		<script src="js/jquery-1.7.2.min.js"></script>
	</head>
	<body>
		<script type="text/javascript">
			// $(&#39;title&#39;).html(&#39;php中文网&#39;);
			$(&#39;title&#39;).text(&#39;php中文网&#39;);
		</script>
	</body>
</html>

js에서 html 제목을 수정하는 방법

에서 구현할 수 있습니다.[권장 학습: javascript 고급 튜토리얼]

위 내용은 js에서 html 제목을 수정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.