XML を返す ajax 呼び出しを行っています。この XML は、ユーザーがいるサイト内のページのセクションに基づいて、異なる方法で処理する必要があります。したがって、呼び出しを行い、変数の成功関数を持つ ajax 関数を 1 つ実装したいと思います...単純だと確信していますが、しばらく検索して理解できません..
function makeAjaxCall(variableSuccessFunction) {
$.ajax.... (ajax stuff goes here)...
success: variableSuccessFunction(xml)
}
function ViewOne(xml) {
//take the XML and update the dom as appropriate
}
function ViewTwo(xml) {
//take the XML and update the dom as appropriate
}
$(document).ready(function() {
//be able to call either one of these functions
makeAjaxCall(ViewOne);
makeAjaxCall(ViewTwo);
}