當iframe加載時我停止加載時使用css類'active'我切換到'inactive'類。iframe javascript onload
<script type="text/javascript">
function frameload(){
document.getElementById("loadnav").className = "active";
}
document.getElementById("loadnav").className = "inactive";
</script>
<iframe src="https://www.wikipedia.org/" onload="frameload()"></iframe>
問題是加載後沒有返回到「無效」狀態。
我認爲你必須刪除初始級 –