ohi*_*azn 3 html javascript iframe title
这是我的代码:
<div id="main-content">
<script>
document.title = document.getElementById("main-content-iframe").contentDocument.title;
</script>
<iframe name="cstage" src="home.html" width="100%" height="100%" id="main-content-iframe" frameborder="0" onload="document.title=parent.frames['cframe'].document.title;">If you're seeing this message, it means IFrames are not supported; Please enable IFrames or upgrade to a compatible browser that supports IFrames.</iframe>
</div>
Run Code Online (Sandbox Code Playgroud)
它不起作用,我做错了什么?
您需要检查iframe是否已加载.
<div id="main-content">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<iframe name="cstage" src="home.html" width="100%" height="100%" id="main-content-iframe" frameborder="0" onload="document.title=parent.frames['cframe'].document.title;">If you're seeing this message, it means IFrames are not supported; Please enable IFrames or upgrade to a compatible browser that supports IFrames.</iframe>
<script>
$( "iframe" ).on('load',function() {
document.title = document.getElementById("main-content-iframe").contentDocument.title;
});
</script>
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
17118 次 |
| 最近记录: |