相关文章推荐
光明磊落的铁链  ·  Triple-Slash ...·  1 年前    · 
英勇无比的红茶  ·  python - ...·  2 年前    · 
千杯不醉的红豆  ·  Pyqt5 ...·  2 年前    · 
JavaScript 如果你的專案沒有使用jQuery,一定要使用JavaScript,這裡提供一個跨瀏覽器的解法,在IE中Iframe雖然有定義onload事件,但是它並不會在iframe載入完成時觸發,這實在是一個很奇怪的BUG,不過沒關係你可以自己替它綁上,實作程式碼如下 $(document).ready(function(){ // javaScript 方法 var iframe = document.getElementById("myIframe"); if (iframe.attachEvent){ iframe.attachEvent("onload", function(){ alert("Local iframe is now loaded."); } else { iframe.onload = function(){ alert("Local iframe is now loaded."); document.body.appendChild(iframe);