How to modify browser title using javascript
Let me tell you a method and technique for using JavaScript to modify the browser title. Friends who need it can test the code.
title is a special node element in HTML. Because it can use document.getElementsByTagName("title")[0] to get the title tag of the web page, but it cannot use document.getElementsByTagName("title") [0].innerHtml is used to change its value. After testing, there are two ways to modify native js, and it can also be easily set in jQuery. Friends who are not sure can find out.
innerText method
Through console.log(document.getElementsByTagName("title")[0]), I found that the
document.getElementsByTagName("title")[0].innerText = '需要设置的值';
document.title method
After testing, the value of title can also be set through document.title.
console.log(document.title); # 可以获取title的值。 document.title = '需要设置的值'; # 设置title的值。
Example
window.onfocus = function () { document.title = '恢复正常了...'; }; window.onblur = function () { document.title = '快回来~页面崩溃了'; };
We change the value of title when the browser gains focus and loses focus. You can find that the title changes when switching browser tabs.
jQuery method
Of course, if your project relies on jQuery, you can use the jq method to set it
$('title').html('') $('title').text('')
Both methods can be implemented in jq
Summary
In native js, we can dynamically modify the title of the web page through innerText and document.title.
In jq, we can use $('title').html('') Or $('title').text('') to modify.
The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.
Related articles:
How to determine whether jQuery is loaded
How to use the React Native screenshot component (detailed tutorial)
How to use state and setState in react (detailed tutorial)
How to add a mobile phone verification code component in Vue
How to control the global console.log switch in Vue
How to prohibit the bottom page of the pop-up window from scrolling
The above is the detailed content of How to modify browser title using javascript. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Realize the gap effect of card coupon layout. When designing card coupon layout, you often encounter the need to add gaps on card coupons, especially when the background is gradient...

Using locally installed font files in web pages Recently, I downloaded a free font from the internet and successfully installed it into my system. Now...

The challenge of keeping the style of the page zoomed and the same after the page is zoomed in. Many developers will encounter a difficult problem when making PC pages: when the user zooms in or out of the browsing...

How to obtain dynamic data of 58.com work page while crawling? When crawling a work page of 58.com using crawler tools, you may encounter this...

The reason and solution for coding exceptions when using the request library to obtain HTML text content in the Node.js environment. During the development process of using Node.js, it is often necessary to...

iconfont...

The method of customizing resize symbols in CSS is unified with background colors. In daily development, we often encounter situations where we need to customize user interface details, such as adjusting...

Implementing responsive layouts using CSS When we want to implement layout changes under different screen sizes in web design, CSS...
