以下を含む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
ですか?