from表单递交

来源:互联网 发布:wince 导航 软件安装 编辑:程序博客网 时间:2024/05/24 04:53
    var myapp=angular.module("myapp",[]);    myapp.controller("MyCtrl",function($scope,$http){        $scope.Zc=function(){            $.ajax({                type: "POST",                url: BASE_URL+"/login/loginUser",                data: $('#myform').serialize(),// 你的formid                async: false,                error: function(request) {                    ("Connection error");                },                success: function(data) {                    /*  $("#commonLayout_appcreshi").parent().html(data);*///                    alert(data.toString());                }            });        }    })