0

我有 3 页。Page1(在按钮单击时)通过模态(modal1)调用 page2。Page2 有按钮单击时通过模态(modal2)打开 page3。所以它的模态在另一个模态中。

我不想杀死/关闭父模式。但改为调整 modal2 的 css(top, left)。

我该怎么做呢?

以下是整体结构的外观:

<div id="preferences" class="modal bigModal in" data-backdrop="static" aria-hidden="false">
    <iframe id="preference" class="searchModal-body" src="preferences?lightbox=yes&section=2">
         <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
             <div id="searchBox" class="modal bigModal in" aria-hidden="false">
                 ..........
             </div>
            ....
         </html>
         .........
     </iframe>
     ...........
</div>

附上现在的截图

在此处输入图像描述

4

1 回答 1

0
$('#preference').contents().find("#searchBox").offset({top:10, left:30});

但如果 iframe 来自同一个域,浏览器安全将允许此类操作

于 2013-05-23T18:22:20.853 回答