JavaScript获取当前网页标题(title)的方法

这篇文章主要介绍了JavaScript获取当前网页标题(title)的方法,涉及javascript中document.title方法的使用,需要的朋友可以参考下

本文实例讲述了JavaScript获取当前网页标题(title)的方法。分享给大家供大家参考。具体如下:

JS中的document.title可以获取当前网页的标题

<!DOCTYPE html> <html> <head> <title>jb51.net</title> </head> <body> current document's title is: <script> document.write(document.title); </script> </body> </html>

运行结果如下:

current document's title is:jb51.net

如何用js代码修改与读取网页标题呢,本节为大家提供一例代码。
在ie6和ff2.0下测试通过。

代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>标题一</title> </head> <body> <script type="text/javascript"> <!-- var t=document.title; alert(t); document.title="改变的标题二"; //--> </script> </body> </html>

希望本文所述对大家的javascript程序设计有所帮助。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgjsfg.html