首页 > 代码库 > 微软自带的Ajax请求
微软自带的Ajax请求
Home控制器
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace MvcApplication1.Controllers { public class HomeController : Controller { // // GET: /Home/ public ActionResult Index() { return View(); } public ActionResult GetDate() { //Thread.Sleep()方法用于将当前线程休眠一定时间 时间单位是毫秒 1000毫秒= 1秒 System.Threading.Thread.Sleep(1000); //将网站延迟1秒钟,以观看LoadingElementId="loadingID"的作用及效果 return Content(DateTime.Now.ToString()); } public ActionResult MicrosoftAjax() { return View(); } } }
MicrosoftAjax.cshtml视图
@{ Layout = null; } <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>MicrosoftAjax</title> <script src=http://www.mamicode.com/Scripts/jquery-1.7.1.js" type="text/javascript"></script>>《1》
.《2》
《3》
《4》
《5》
微软自带的Ajax请求
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。