我用的是
window.open("aaa.asp,alwaysRaised=no")
没实现

解决方案 »

  1.   

    写错
    我用的是
    window.open("aaa.asp,alwaysRaised=yes") 
    没实现
      

  2.   

    用showModalDialog("aaa.asp",window,"dialogWidth100px;dialogHeight100px;help:no;scroll:no;status:no");
      

  3.   

    var newwindow = ''; function popitup(url,target) {
    if (!newwindow.closed && newwindow.location) {
    newwindow.location.href = url;
    }
    else {
    newwindow=window.open(url,target);
    if (!newwindow.opener) newwindow.opener = self;
    }
    if (window.focus) {newwindow.focus()}
    return false;
    }LZ要用的是模式窗体吧。不是window.open吧。
    试试window.showModalDialog或者window.showModalLessDialog()参数和window.open一样传
      

  4.   

    用3楼的showModalDialog模态窗口吧,我也想知道有没有其它能模仿模态窗口的方法。