可以用window.open代替这种效果。

解决方案 »

  1.   

    问的不清楚.
    top.frames("abcFrame").document.location.replace(strURL);
    top.frames("abcFrame").navigate(strURL);
    将strURL在abcFrame中打开,abcFrame就是target;如果只是弹出一个窗口,用window.open();
      

  2.   

    <input type=button onclick="window.open('demo.htm','win','')" value="demo">
    这相当于
    <a href="demo.htm" target="win">demo</a>
      

  3.   

    eval(窗体名).navigate();
    窗体名.navigate()
      

  4.   

    document.form名.action="要跳转的页面";
    document.form名.submit();
      

  5.   

    有target,没是tartget,target可以定位窗口。
    document.myform.target = "你要定位的窗口名字";
    document.myform.action = "a.html";
    document.myform.submit();