我有一个用JavaScript制作的弹出窗口,但是该弹出窗口始终位于IE窗口的后面-如何使它始终显示在前面并集中显示?
这是我的JavaScript代码:
function FindFilePath() {
var sRet;
var IE = new ActiveXObject("InternetExplorer.Application");
IE.visible = false;
IE.Navigate("about:blank");
while (IE.busy) { }
IE.document.focus();
IE.document.write('<HTML><BODY><INPUT ID="Fil" Type="file"></BODY></HTML>');
//IE.document.all.Fil.focus();
IE.document.all.Fil.click();
var sRet = IE.document.all.Fil.value;
IE.quit();
IE = null;
document.getElementById("<%=TextBox1.ClientID %>").value = sRet; }