为什么浏览器跳过空白标题?

时间:2012-11-18 14:41:24

标签: javascript html

如果我有一个HTML文件file.html,其中包含:

<html>
<body>
<script>
document.title="";
</script>
</body>
</html>

标题设置为file.html(因为无效标题)。但如果我有类似的东西:

<html>
<body>
<script>
document.title="title";
document.title="";
</script>
</body>
</html>

标题现在设置为title。为什么不file.html

0 个答案:

没有答案