我在弹出页面中有一个JQUERYUI对话框。我希望这个Dialog作为一个新窗口打开(如window.open)这可能吗?
答案 0 :(得分:1)
根本不要使用jquery对话框,它只是一个具有更高z-index的浮动div。
<script>
function nWin() {
var w = window.open();
var html = $("#toNewWindow").html();
$(w.document.body).html(html);
}
$(function() {
$("a#print").click(nWin);
});
</script>
<div id="toNewWindow">
<p>Your content here</p>
</div>
<a href="javascript:;" id="print">Open</a>