萬盛學電腦網

 萬盛學電腦網 >> 腳本專題 >> javascript >> JavaScript獲取當前網頁標題(title)的方法

JavaScript獲取當前網頁標題(title)的方法

 JS中的document.title可以獲取當前網頁的標題

  1 2 3 4 5 6 7 8 9 10 11 12 <!DOCTYPE html> <html> <head> <title>jb51.net</title> </head> <body> current document's title is: <script> document.write(document.title); </script> </body> </html>

運行結果如下:

1 current document's title is:jb51.net
copyright © 萬盛學電腦網 all rights reserved