Iframe without src but still has content?

前端 未结 7 710
攒了一身酷
攒了一身酷 2020-12-05 06:56

While debugging jquery code on their site ( via chrome developer toolbar)

I noticed that their examples are given under Iframe :

Here - for ex

7条回答
  •  抹茶落季
    2020-12-05 07:24

    Yes, Here is how you change the html of the iframe with jQuery

    var context = $('iframe')[0].contentWindow.document,
        $body = $('body', context);
    $body.html('Cool');
    

    Demo: http://jsfiddle.net/yBmBa/

    document.contentWindow: https://developer.mozilla.org/en-US/d...

提交回复
热议问题