我的页面中有 iframe,在 iframe 中有一个按钮,应该在页面中心打开窗口。
$(function () {
var offset = 0;
var windowWidth = $(document).width();
var parametrs = 'siteId=@ViewBag.siteId&widgetId=@Model.WidgetId';
var popupWindow = $(".popupWindow").each(function () {
var popupWindows = $(this).kendoWindow({
iframe: true,
width: $(document).width() - 25,
height: 300,
resizable: false,
draggable: false,
actions: ["Minimize", "Maximize", "Close"],
visible: false,
content: '@Url.Action("Index", "Editor")?' + parametrs,
}).data('kendoWindow');
var parent = $(this).parent();
parent.css("top", parent.offset().top + offset);
offset += parent.outerHeight();
popupWindows.open();
});
$("#container").sortable();
});
我使用剑道 ui 窗口。