0
我有jquery行,允許我打開.window並訪問其中一個HTML文件,它的效果很好。請參閱示例代碼。如何添加iframe
<?php if (isset($_SESSION['currentfile'])) { ?>
$("#sourcepreviewout").click(function() {
window.open("<?php $dir = "template/" . trim(file_get_contents("admin/template.txt")) . "/result/";
echo $dir . $_SESSION['currentfile'];
?>", '_blank');
});
<?php } ?>
});
我想在window.open添加,......我怎麼可以編寫代碼來與200像素的大小由200像素的窗口打開添加<Iframe>
並顯示內的HTML文件!