방법: 1. "document.getElementsByTagName("title")[0].innerText='value'" 문을 사용합니다. 2. "document.title='value'" 문을 사용합니다. '제목').html('값')" 문.
이 튜토리얼의 운영 환경: windows7 시스템, javascript1.8.5&&jquery1.10.2 버전, Dell G3 컴퓨터.
js는 console.log(document.getElementsByTagName("title")[0])을 통해 html 제목 title
innerText 메소드
을 설정하고
document.getElementsByTagName("title")[0].innerText = '需要设置的值';
document.title 메소드
테스트 후 document.title을 통해 title 값을 설정할 수도 있습니다.
console.log(document.title); # 可以获取title的值。 document.title = '需要设置的值'; # 设置title的值。
jQuery method
jQuery method 브라우저가 포커스를 얻고 포커스를 잃으면 제목 값을 변경합니다. 브라우저 탭을 전환하면 제목이 변경되는 것을 확인할 수 있습니다.
물론, 프로젝트가 jQuery에 의존하는 경우 jq 메서드를 사용하여
$('title').html('需要设置的值') $('title').text('需要设置的值')
를 설정할 수 있습니다. 예:
<!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"> // $('title').html('php中文网'); $('title').text('php中文网'); </script> </body> </html>
Summary
네이티브 js에서는 innerText, <code>document.title
웹페이지 제목을 동적으로 수정하는 방법에는 두 가지가 있습니다. jq에서는 $('title').html('') 또는 <code>$ ('title').text('')
를 수정하세요. innerText
, document.title
两种方式动态修改网页的title .
jq中我们可以通过 $('title').html('')
或者 $('title').text('')
javascript 고급 튜토리얼】
위 내용은 js에서 html 제목을 설정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!