1

我有以下结构:

我的页面在这样的框架中打开:

<div id="ajaxbox" class="dhtmlwindow" style="z-index: 101; width: 73%; visibility: visible; display: block;">
<div class="drag-handle" style="opacity: 1;">
Title
<div class="drag-controls">
</div>
<div class="drag-contentarea" style="height: 715px; overflow: hidden; display: block;">
<iframe name="_iframe-ajaxbox" style="margin:0; padding:0; width:100%; height: 100%" src="">
//My Page opened here
</iframe>
....

现在我想从linkbutton我的页面中关闭容器(div id="ajaxbox"

这个怎么做 ?

4

1 回答 1

1

编写一个 javascript 函数来关闭父页面中的 div。

jQuery 示例:

function CloseDiv()
{
    $("#ajaxbox").hide();
}

在您的链接按钮上调用客户端脚本:

<asp:linkbutton id="LinkButton1"
       text="Close Me"
       onclientclick="parent.CloseDiv()"
       runat="Server" />
于 2012-08-26T11:58:20.977 回答