0

我想将PHP文件加载到灯箱中。以下是我获取新 PHP 文件的 JavaScript 代码。

视图.js

var popup = window.open("../controller/getordercodedetail.php?name="+comb, "Popup", "width=1000,height=200,top=50,left=150");

现在我想将打开的窗口转换为灯箱。如何使用jQuery转换它?

我使用 jQuery 加载函数得到了解决方案。请参阅 Stack Overflow 问题Loading an external PHP file with an internal PHP include function by using jQuery's 'load()'

4

2 回答 2

1

尝试使用jQuery UI。检查http://jqueryui.com/dialog/#default。或者您可以使用Fancybox

于 2013-07-03T05:12:55.433 回答
1

尝试这个:

window.open('', '', 'width=200,height=100');
于 2013-07-03T04:49:57.257 回答