打赏
摘要: Ajax请求默认的都是异步的如果想同步 async设置为false就可以(默认是true)var html = $.ajax({ url: "some.php", async: false}).responseText; 或者在全局设置Ajax属性$.ajaxSetup({ async: false 阅读全文
posted @ 2017-04-19 10:22 刘奇云 阅读(110) 评论(0) 推荐(0)
摘要: using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using System.Web.Script.Serialization; using System.Data.Common; usi... 阅读全文
posted @ 2017-04-19 10:13 刘奇云 阅读(481) 评论(0) 推荐(0)