本文实例讲述了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
希望本文所述对大家的javascript程序设计有所帮助。