HTML DOM title ÊôÐÔ

¶¨ÒåºÍÓ÷¨

title ÊôÐÔ¿ÉÉèÖûò·µ»Ø¶ÔÔªËØµÄÃèÊöÐÔ¶ÌÓï¡£

Óï·¨

bodyObject.title=title

ʵÀý

ÏÂÃæµÄÀý×Ó½«Õ¹Ê¾ÉèÖà <body> ÔªËØµÄ title ÊôÐÔµÄÁ½ÖÖ·½·¨£º

<html>
<body id="myid" title="mytitle">

<script type="text/javascript">
x=document.getElementsByTagName('body')[0];
document.write("Body title: " + x.title);
document.write("<br />");
document.write("An alternate way: ");
document.write(document.getElementById('myid').title);
</script>

</body>
</html>

Êä³ö£º

Body title: mytitle
An alternate way: mytitle
VUE