我有这组 Javascript 代码可以在 IE(任何版本)中正常工作,但不能在 Mozilla Firefox 或 Google Chrome 上工作。有人可以告诉我为什么吗?
function returnData(strCode,strProgramCode,strName)
{
parent.opener.document.all.txtCourseCode[7].value = strCode;
parent.opener.document.all.txtProgram[7].value = strProgramCode;
parent.opener.document.getElementById("txtCourseName8").innerHTML = strName;
window.close()
}
仅供参考,此 Javascript 嵌入到使用 .NET Framework 1.1 编写的 .aspx 页面中。
编辑不起作用意味着:尽管明确调用了它们,但没有执行任何行。
示例:window.close()
不关闭窗口