// js
"); input1.attr('value',data[i]); $d.append(input1); } } else { alert("error"); } }); } function syncAjax(myUrl,myData,sufn) { $.ajax({ url : myUrl,data : myData,type : 'post',dataType : 'json',cache : false,async : false,success : function(result) { if (result.statusCode == 200) { alert("会话超时,请重新登录!"); window.location.href = "index.jsp"; } else { if (sufn) sufn(result); } },error : function(msg) { alert("error:" + msg); } }); };