没做过,可能要调用windows对像,帮你up也帮自己

解决方案 »

  1.   

    如果是彈出窗口很容易
    window.open("url","","location=0,menubar=0,resizable=1,scrollbars=0,status=0,titlebar=0,toolbar=0,hotkeys=0")
      

  2.   

    <script language=javascript>
    function fun()
    {
       newwin=window.open("url","","location=0,menubar=0,resizable=1,scrollbars=0,status=0,titlebar=0,toolbar=0,hotkeys=0");
      return true;
    }
    </script>
    <a href="javascript:fun();">linktext</a>
      

  3.   

    链接变成javascript:fun()了??????????没有调用到url
      

  4.   

    <a href="test.jsp" target="_blank" onclick="window.open("test.jsp","","location=0,menubar=0,resizable=1,scrollbars=0,status=0,titlebar=0,toolbar=0,hotkeys=0")">test</a>可是弹出的新窗口还是有地址栏?
    我想让这个窗口是一个新打开的窗口 所以用了target="_blank" 
    不冲突吧?
      

  5.   

    window.open就是在新窗口中打开了罢?
    不需要target="_blank"了罢?