Embedding part of a web site

后端 未结 4 770
星月不相逢
星月不相逢 2021-01-02 23:35

Suppose I want to embed the latest comic strip of one of my favorite webcomics into my site as a kind of promotion for it. The webcomic has the strip inside of a div with an

4条回答
  •  走了就别回头了
    2021-01-03 00:26

    It's impossible because you cannot manipulate iframe/frame content. Using iframe tag will just modify content in tag, but not the src. Neither with AJAX, because you have to be on the same domain.

    So, for example, you can use PHP with cURL or quite simply with fopen.

提交回复
热议问题