頁面的標題(title)可以使用Javascript的document.title語句獲取,完整的代碼如下:
<!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>Javascript獲取頁面的標題(title)- </title>
</head>
<body>
<div>以下是使用Javascript獲取的頁面標題(title):
<script language="javascript" type="text/javascript">
document.write(document.title); //獲取並顯示頁面的標題,即<title>和</title>之間的內容。
</script>
</div>
<div style="margin-top:500px"></div></body>
</html>