$("#PostReplyForm").submit();//这一步执行了,但是并没有提交表单,不知道为什么?<form action="/Zone/PostReply" id="PostReplyForm" method="post" name="PostReplyForm">
          <br />我要回复(Ctrl+Enter直接回复):<br />
            <input id="zoneName" name="zoneName" type="hidden" value="cnlan" />
            <textarea cols="20" id="replyContent" name="replyContent" rows="2" style="height:120px;width:800px">
</textarea>
            <input type="submit" id="PostSubmit" name="PostSubmit" value="提交回复" />
        </form>       
    <script type="text/javascript">
        $(document).ready(function() {
            $("#replyContent").keypress(function(e) {
                if (e.ctrlKey && e.which == 13 || e.which == 10) {
                    $("#PostReplyForm").submit();//这一步执行了,但是并没有提交表单,不知道为什么? 
                }
            });
 
            $("#PostSubmit").click(function() {
                alert("hello");
            });
        });
    </script>