<script language="javascript">
open("part","name",location="no")
</script>
part : 要打开的文件路径,
name : 打开窗口的名字

解决方案 »

  1.   

    <input type="button" onclick="window.open('http://www.csdn.net','v','status=no,toolbar=no');" value="open" />
      

  2.   

    function popnew(url,title,width,height){
        var w = 1024;
        var h = 768;    if (document.all || document.layers){
            w = screen.availWidth;
            h = screen.availHeight;
        }    var leftPos = (w/2-width/2);
        var topPos = (h/2.3-height/2.3);    window.open(url,title,"width="+width+",height="+height+",top="+topPos+",left="+leftPos+",scrollbars=no,resizable=no,status=no,location=no")
    }ff  和max是一样的
      

  3.   

    window.open("name",location="no")
      

  4.   

    maxthon会在一个新的标签页里面打开呀???