我"webpage had expired"
只在 IE9 中遇到错误。我正在调用带有 2 个提交按钮(图像按钮)的模式对话框。当我单击它们时,我可以看到弹出窗口,然后我收到“网页已过期”消息。
我的功能:
moreSubscribersQuestions: function () {
var dlg= $("#dialogMoreClients").dialog({
modal: true,
//dialogClass: 'WsErrorMessage'
dialogClass: 'addMoreClientPopUp',
width: 500,
height:400
});
$('.ui-helper-clearfix:after').removeClass();
//$('div.FinishPurchasePopUpBTn').each(function () {
// this.addClass('FinishPurchasePopUpBTn');
//});
dlg.parent().appendTo(jQuery("form:first"));
}
删除后 dlg.parent().appendTo(jQuery("form:first"));
问题不再出现。有什么建议么?