js에서 html 제목을 수정하는 방법: 1. "document.title="value that need to be set";" 문을 사용합니다. 2. "$('title').html('value that need to be set"을 사용합니다. set')" 또는 " $('title').text('설정할 값')" 명령문입니다.
이 튜토리얼의 운영 환경: 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 = 'php中文网'; </script> </body> </html>
방법 2: jQuery의 html() 또는 text() 메서드 사용
물론 프로젝트가 jQuery에 의존하는 경우 jq의 메서드 설정을 사용할 수 있습니다.
두 가지 방법 모두 jq
$('title').html('需要设置的值') $('title').text('需要设置的值')
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"> // $('title').html('php中文网'); $('title').text('php中文网'); </script> </body> </html>
에서 구현할 수 있습니다.[권장 학습: javascript 고급 튜토리얼]
위 내용은 js에서 html 제목을 수정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!