JavaScript获取当前网页标题(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程序设计有所帮助。
相关推荐
cbao 2020-02-14
liaochengseo 2016-12-20
mzdanvy 2016-09-01
cheado 2010-03-19
linfei0 2009-11-28
yingking00 2009-09-04
SEO笔者小丹i 2009-07-30
GrindstoneFos 2017-04-11
wljgg 2016-04-03
ElementZW 2014-03-22
nnj 2019-04-21
张惠奇 2019-04-12
githubphpnobug 2014-04-11
PHP100 2019-03-27
前端外刊评论 2018-02-11