有没有办法只能在按钮点击时加载Iframe而不是整个HTML页面。
提前致谢。
答案 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>');
}
});
});