HTML DOM title ÊôÐÔ
¶¨ÒåºÍÓ÷¨
title ÊôÐÔ¿É·µ»Øµ±Ç°ÎĵµµÄ±êÌ⣨ HTML title ÔªËØÖеÄÎı¾£©¡£
Óï·¨
document.title
ʵÀý
<html>
<head>
<title>My title</title>
</head>
<body>
The title of the document is:
<script type="text/javascript">
document.write(document.title
)
</script>
</body>
</html>