window.open(url,'','resizable=no,width=x,height=y')

解决方案 »

  1.   

    能不能请你说详细一点,比如一个连接“点我”,当点它之后就弹出一个窗口,
    然后控制这个弹出的窗口,不用(onclick)吗?
      

  2.   

    <script Language="JavaScript" >
    function openEditWindow(url){
    form = document.modelInfListForm;
    features = 'width=600, height=400, left=180, top=150, directories=no, localtion=no, menubar=no, status=yes, toolbar=no, scrollbars=no, resizeable=no';
    window.open(url,"REFER_DLG",features);
    }
    </script><a href="JavaScript:openEditWindow('www.sina.com.cn');">
    click me
    </a>