ajax使用post方法提交表单

技术教程 · 2014-06-01
//ajax使用post方法提交表单

<script type="text/javascript">
    function showApply() {
            $.ajax({
                cache : false,
                type : "POST",
                url : "/dgzh/web/user/search/applyResultList.jsp", //把表单数据发送到updateApply.jsp
                data : $('#applyType').serialize(), //要发送的是result表单中的数据
                async : false,
                error : function(request) {
                    alert("发送请求失败!");
                },
                success : function(data) {
                    $("#menuList").html(data); //将返回的结果显示到menuDetails中
                }
            });
        }
</script>
Theme Jasmine by Kent Liao