Using CSS to affect div style inside iframe

前端 未结 13 1831
失恋的感觉
失恋的感觉 2020-11-22 07:00

Is it possible to change styles of a div that resides inside an iframe on the page using CSS only?

13条回答
  •  忘掉有多难
    2020-11-22 07:03

    You can retrieve the contents of an iframe first and then use jQuery selectors against them as usual.

    $("#iframe-id").contents().find("img").attr("style","width:100%;height:100%")
    
    $("#iframe-id").contents().find("img").addClass("fancy-zoom")
    
    $("#iframe-id").contents().find("img").onclick(function(){ zoomit($(this)); });
    

    Good Luck!

提交回复
热议问题