can I catch exception of Iframe in parent window of Iframe

前端 未结 3 1656
名媛妹妹
名媛妹妹 2020-12-15 06:30

I have an IFrame in a page and IFrame has some JavaScript. At run time JavaScript in IFrame gives exception which i want to catch on parent window. How to do that?



        
3条回答
  •  -上瘾入骨i
    2020-12-15 07:19

    The only way is if the frame is on the same domain, in which case you can do, from parent:

    iframe.contentWindow.onerror = function(){
        // handle error
    }
    

提交回复
热议问题