如何检查打开的表单是否具有父表单

时间:2013-06-19 10:09:21

标签: asp.net

我正在使用thickbox来显示数据列表,但是当会话超时发生时,用户尝试通过单击链接打开厚箱,胖箱将打开,登录页面将自动加载到厚箱中。那么,有什么方法可以检查表单(thickbox)是否有父表单?或者像:

这样的javascript代码
if(document.hasParent)
{
 TB_CLOSE();
}

1 个答案:

答案 0 :(得分:1)

您可以查看如下:

if (self == parent){
 //this is parent
}

或者其他方式:

if (self != parent){
 //this is not parent
}