仅加载iframe而不是整个HTML页面

时间:2016-07-14 09:50:10

标签: html iframe

有没有办法只能在按钮点击时加载Iframe而不是整个HTML页面。

提前致谢。

2 个答案:

答案 0 :(得分:0)

onclick处理程序中:

document.getElementById("iframe_id").contentWindow.location.reload();

document.getElementById("iframe_id").src = document.getElementById("iframe_id").src

答案 1 :(得分:0)

试试这个:

onClick='document.getElementById("ifr").src="add_dossier.php";'

$(function(){
    $('#button').click(function(){
        if(!$('#iframe').length) {
                $('#iframeHolder').html('<iframe id="iframe" src="http://google.com" width="700" height="450"></iframe>');
        }
    });   
});