拿到冠軍這是我的代碼:與iframe文檔
<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>
它不工作,我究竟做錯了什麼?
Javascript控制檯中是否有任何錯誤消息? – Barmar
腳本標記中的js未處於文檔準備就緒調用中,因此它在iframe加載之前執行,因此零件將無法正常工作。 –
你見過這個職位?可能是有用的[使用jquery從javascript獲取iframe頁面標題](http://stackoverflow.com/questions/1570808/get-iframe-page-title-from-javascript-using-jquery) – davewoodhall