如何将JQUERY UI对话框配置为新窗口?

时间:2013-11-13 15:03:43

标签: jquery-ui jquery-ui-dialog

我在弹出页面中有一个JQUERYUI对话框。我希望这个Dialog作为一个新窗口打开(如window.open)这可能吗?

1 个答案:

答案 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>​

Reference