码迷,mamicode.com
首页 > Web开发 > 详细

MVC的Ajax异步请求

时间:2014-05-03 22:50:30      阅读:344      评论:0      收藏:0      [点我收藏+]

标签:blog   class   code   java   tar   ext   

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@using (Ajax.BeginForm("GetTime","order",new AjaxOptions()
          {
              Confirm="你确认这么做吗?",
              HttpMethod="post",
              OnSuccess = "afterajax",
              UpdateTargetId="result",
              InsertionMode=InsertionMode.Replace,
              LoadingElementId = "loading",
          }))
      {
           
          <input type="text" name="txtname" />
          <input type="submit" name="获取时间"  />          
      }
      <div id="loading">
          <img src="~/Content/Images/loading.gif" />
      </div>
      <div id="result">
 
      </div>   <br><br><br>

 

  Html部分代码

<script src="~/Scripts/jquery-1.8.2.js"></script>
<script src="~/Scripts/jquery.unobtrusive-ajax.js"></script>
<script type="text/javascript">
$(function () {
$("#loading").css("display", "none");
$("#btnGetTime").click(function () { 
$.ajax({
url: "/order/GetTime",
data: {},
type: "post",
success: function (data) {
alert(data);
}

});
$.get("/order/GetTime", {}, function (data) {
alert(data);
});
}
)
});
function afterajax(data) {
alert("ff");

}
function aff() {
$("#loading").css("display", "none");
}


</script>

  

 

 

 

MVC的Ajax异步请求,布布扣,bubuko.com

MVC的Ajax异步请求

标签:blog   class   code   java   tar   ext   

原文地址:http://www.cnblogs.com/xiaofengfeng/p/3705185.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!