HTML DOM title 属性
JavaScript基础 2022-06-08 15:35:56小码哥的IT人生shichen
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
TIY
完整实例【返回 <body> 元素的标题】:
<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>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html