如何通过ajax在div中加载iframe

时间:2018-07-04 11:39:42

标签: javascript jquery html ajax iframe

我想通过ajax在我的div中加载iframe。怎么办?

<button id="iframeload">Load Iframe</button>
<div id="iframe_content"></div>
<script type="text/javascript">
  $('.iframeload').click(function(event) {
    event.preventDefault();
    event.stopImmediatePropagation();
    $.ajax({
        type: "POST", 
        url : "https://pecom.ru/ru/calc/?iframe=Y",
        success : function (data) {  
            // alert('ok');
            $("#iframe_content").html(data); 
        }
    });
});

此iframe