$.post("http://localhost:8080/codedictWebService/findCodedict", {
id : id
}, function(data) {
$("#findCodedictid").val(data.id);
$("#findCodedictccatalog").val(data.ccatalog);
$("#findCodedictcode").val(data.code);
$("#findCodedictsvalue").val(data.svalue);
$("#findCodedictsortvalue").val(data.sortvalue);
}, "json").error(function(xhr, errorText, errorType) {
alert('错误');
}, "json");