1.ajax
1 ajax代碼: 2 $.ajax({ 3 async: false, 4 cache: false, 5 type: 'POST', 6 contentType: "application/json", 7 url: "/MsgTypeTemItem/GetAllStr", //請求的action路徑 8 data:{temId:$("#temId").val()}, 9 error: function () {//請求失敗處理函數 10 alert('請求失敗'); 11 }, 12 success: function (data) { //請求成功後處理函數。 13 data = "[" + data + "]"; 14 treeNodes = eval(data); 15 } 16 }); 17 Controller代碼: 18 public string GetAllStr(string id) 19 { 20 List<MsgTypeTemItem> allList = msgTypeItemService.GetAll(); 21 return ""; 22 }