我正在使用fancybox,在提交表单后,我想将我的父页面重定向到某个指定的网址,我正在使用fancybox,如下所示
$(document).ready(function () {
$('[id*=addnewRequest]').fancybox({
'width': 760,
'height': 540,
'padding': 0,
'margin': 0,
'hideOnOverlayClick': false,
'scrolling': 'auto',
'autoScale': false,
'transitionIn': 'none',
'transitionOut': 'none',
'type': 'iframe',
'centerOnScroll': true,
'onClosed': function () {
if ($.redirTo != null && $.redirTo.length > 0){
window.location.replace($.redirTo);
}
else {
parent.location.reload(true);
}
}
});
});
在提交我的表单后,我正在使用下面的注册脚本,其中“redirectTo”是我希望我的父页面重定向的 url
ScriptManager.RegisterStartupScript(this.Page, typeof(Page), "add", "parent.jQuery.redirTo='" + redirectTo + "'; parent.jQuery.fancybox.close();", true);
现在我的父页面将如何重定向到特定的 url。知道吗?
谢谢,