我正在使用thickbox来显示数据列表,但是当会话超时发生时,用户尝试通过单击链接打开厚箱,胖箱将打开,登录页面将自动加载到厚箱中。那么,有什么方法可以检查表单(thickbox)是否有父表单?或者像:
这样的javascript代码if(document.hasParent)
{
TB_CLOSE();
}
答案 0 :(得分:1)
您可以查看如下:
if (self == parent){
//this is parent
}
或者其他方式:
if (self != parent){
//this is not parent
}