Get HTML inside iframe using jQuery

后端 未结 10 1161
清歌不尽
清歌不尽 2020-11-27 04:24

Here is my situation.

I have a file called iframe.html, which contains the code to for a image slideshow. The code is somewhat like

<         


        
10条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-27 05:06

    $('#iframe').load(function() {
        var src = $('#iframe').contents().find("html").html();
        alert(src);
    });
    

提交回复
热议问题