日期:2014-05-16 浏览次数:20694 次
var onCommandChange = function() {
var data = {id: $('select.cmdtype-list option:selected').val()};
alert(getRootPath() + '/task/getCommand');
$.getJSON(getRootPath() + '/task/getCommand', data, function(json){
alert("err");
$("textarea#cmd_prj").text(json.text);
})
}
var onCommandChange = function() {
var data = {id: $('select.cmdtype-list option:selected').val()};
alert(getRootPath() + '/task/getCommand');
$.ajax({url:getRootPath() + '/task/getCommand',data:data
,dataType:'json'
,success:function(){alert("err");$("textarea#cmd_prj").text(json.text);}
,error:function(xhr){alert('错误\n\n'+xhr.responseText)}
})
}