如何在 JavaScript 中处理 document.title?
使用 document.title 属性来设置文档的标题。
示例
你可以尝试运行以下代码在 JavaScript 中实现 document.title 属性。
<!DOCTYPE html> <html> <head> <title>Demo Title</title> </head> <body> <script> var x = document.title; document.write("Our Title: "+x); </script> </body> </html>
广告