不适用于 Chrome 和 Edge 'frames.filedownframe.location.href'

Not working in Chrome and Edge 'frames.filedownframe.location.href'

下面的 common.js 和 common.min.js 文件仅在边缘和 Chrome 中的代码段中的行 frames.filedownframe.location.href 抛出异常,而它在 Chrome 中工作正常IE.

function fn_FileDownload(n) { var t = null; try { t = "/Common/AttachFileDownload.aspx?IDX=" + n; frames.filedownframe.location.href = t  } catch (i) { fn_OpenErrorMessage(i.description) } } 

我已经替换了下面这行代码:

frames.filedownframe.location.href = t

有了这个:

windows.location=t 

我能够下载附件文件。