我有像
这样的代码jQuery.post("abcd/save",{
"data" : strData,
"where" : window.parent.grdnew.CurrentFilter,
},function(strData, strTextStatus, objXMLHttpRequest){
if (strTextStatus == "success"){
window.parent.ABC.ShowAlert("Comments saved Successfully.",function(){
var ObjData = eval("(" + strData + ")");
if(ObjData.rows){
window.parent.grdnew.Rows = ObjData.rows;
window.parent.grdnew.Rows.TotalCount = ObjData.results;
}
window.parent.grdnew.RefreshView();
});
}
});
在行,window.parent.grdnew.Rows
总是抛出window.parent is null
之类的错误。但是行window.parent.grdnew.RefreshView();
不会抛出任何错误。
如何更正错误?