<input type="button" name="send" value="添加" 
  onclick="">

解决方案 »

  1.   

    js函数
    window.open ('page.html', 'newwindow', height=100, width=400, top=0, left=0, toolbar=no, menubar=no, scrollbars=no,resizable=no,location=no, status=no') top left用来定位,height width控制大小
      

  2.   

    刚少了个符号,,,但是对于有些标签式的,不一定能奏效window.open ("page.html", "newwindow", "height=100, width=400, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no");
      

  3.   

    <input type="submit" name="submit" value="添加" 
      onclick="<script>"window.open ('q.php', 'newwindow', height=100, width=400, top=50, left=100, toolbar=no, menubar=no, scrollbars=no,resizable=no,location=no, status=no')"</script>">
    没反应
      

  4.   

    <input type="button" name="send" value="添加"  
      onclick="window.open ('page.html', 'newwindow', 'height=100, width=400, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no');">
      

  5.   

    <input type="submit" name="submit" value="添加" 
      onclick="javascript:window.open ('q.php', 'newwindow', height=100, width=400, top=50, left=100, toolbar=no, menubar=no, scrollbars=no,resizable=no,location=no, status=no');">
      

  6.   


    <html>
    <script type="text/javascript">
    function open_win() {
    myWindow=window.open('','','width=200,height=100')
    myWindow.document.write("This is 'myWindow'")
    myWindow.focus()
    }
    </script>
    <body>
    <input type=button value="Open Window" onclick="open_win()" />
    </body>
    </html>参看:
    http://www.w3school.com.cn/htmldom/met_win_open.asp