如何使用XMLHttpRequest()接收页面中存在的所有图像

时间:2019-01-16 15:35:29

标签: javascript jquery html5

我想做的是我要以bootstrap 4模式加载整个HTML页面。

到目前为止,我已经尝试过XMLHttpRequest()函数,但是它没有加载任何图像。

function loadPage(href)
            {
                var xmlhttp = new XMLHttpRequest();
                xmlhttp.open("GET", href, false);
                xmlhttp.send();
                return xmlhttp.responseText;
            }
<div class="big-circle mar" onClick="document.getElementById('modal-display').innerHTML = 
                      loadPage('https://www.theevince.com/disp.html');"><button class="btn btn-info circle display-but" type="button" data-toggle="modal" data-target="#Modal1">

我想要的是加载整个页面,包括我想要的任何HTML链接的图像

0 个答案:

没有答案