使用位于同一页面的iframe加载时,如何更改父页面的元标记(描述,标题)?

最佳答案

您可以使用

parent.document.title = 'something';

用于更改父标题和

parent.document.querySelector('meta[name="description"]').setAttribute('content','something');

用于更改父代说明。

关于javascript - 从iframe更改父页面元标记,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25565552/

10-11 05:54