Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ドキュメントウィンドウのタイトルを設定する方法はありますかiframe ページのタイトル。
これがあなたが探しているものだと思います。最適な方法で iframe のタイトルを取得し、次を使用してドキュメントのタイトルを設定します。
document.title = "New Title"
iframe タイトルを取得する方法がわからない場合は、次の行に沿って何かを試してください。
document.title = document.getElementById("main-content-iframe").contentDocument.title;