遇到的问题----window.opener.Form1在IE10中不可用


window.opener.Form1(Result).focus();

window.opener.document.Form1(Result).value=FilePath;


以上js代码在IE6中能取到值


但在IE10中报错  Microsoft JScript 运行时错误: 对象不支持此属性或方法



改为如下用法 可用:

window.opener.document.getElementById(Result).value = FilePath;

你可能感兴趣的:(JavaScript,asp.net,IE10)