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