1 (function ($){ 2 $.fn.extend({ 3 exajax:function(url,opts,convert){ 4 var ajaxParam = { 5 url:url, 6 async : false, // 同步 7 type:'POST', // 请求类型 8 cache:false, // 不缓存 9 dataType:'json', 10 success:'', 11 error : '' 12 }; 13 opts =opts||{}; 14 for(v