当进行 jQuery ajax 调用时,生成的 jqXHR 变量data
将传递给renderData
下面的渲染函数。$type
该函数通过仅填充对象的一个属性来确定数据的来源。
找出哪些属性被填充以及数据来自何处的巧妙方法是什么?
function renderData(data){
var $type = {
contact : $(data).filter('#contact'),
details : $(data).find('#details'),
other : $(data).find('#other')
};
// Get the populated property and store its value in "endResult"
endResult.appendTo('#wrapper').hide().fadeIn();
};