为什么页面跳不过去呢??

    <script type="text/javascript">

            function dianyixia(){
                $("#form").submit();
            }

    </script>

  </head>
    <body>
    <form id="form" action="pages/login.jsp" target="_blank" method="get">
        <table>
            <tr>
                <td>在新窗口中打开<input type="button" value="点一下" onclick="dianyixia();"></td>
            </tr>
        </table>
    </form>
  </body>
</html>

jquery框架没有正确倒入吧。。

 <script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.2.min.js"></script>
   <script type="text/javascript">

            function dianyixia(){
                $("#form").submit();
//document.getElementById('form').submit();///没导入jquery就用这句
            }

    </script>

  </head>
    <body>
    <form id="form" action="pages/login.jsp" target="_blank" method="get">
        <table>
            <tr>
                <td>在新窗口中打开<input type="button" value="点一下" onclick="dianyixia();"></td>
            </tr>
        </table>
    </form>
  </body>
</html>

还没有处理提交的逻辑或者是处理的逻辑有问题

应该是没导入包,,,,看楼上的

document.getElementById('form').submit();