本文实例讲述了JavaScript获取当前网页标题(title)的方法。分享给大家供大家参考。具体如下:
JS中的document.title可以获取当前网页的标题
<!DOCTYPE html><html><head><title>VeVB.COm</title></head><body>current document's title is:<script>document.write(document.title);</script></body></html>
运行结果如下:
current document's title is:VeVB.COm
如何用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程序设计有所帮助。
新闻热点
疑难解答