我想通过一些html / css代码在浏览器标签()中添加一个时钟图标。不是作为图标,而是作为'文字'
因此,例如在“' Do'之前无需更改Stackoverflow图标
这是否受浏览器支持?如果是,那么在代码中会是什么样子?
答案 0 :(得分:1)
在控制台中键入:
document.getElementsByTagName("title")[0].innerHTML = ""
它是<title>
元素,用于管理浏览器中的标签标题。
<!DOCTYPE html>
<html>
<head>
<title> Title with clock symbol.</title>
</head>
<body>
The content of the document......
</body>
</html>