优化 ajax 代码,不要重复自己

optimize ajax code and don't repeat myself

这是我的代码 我不想重复我的 ajax 我该如何优化它?然后有更短的代码? 所以我在这里只给你看一个例子:

function for() {
if (forceexs) {
    if (login == "inte") {
        $.ajax({
            url: "index_content.php?mode=ppanel=forgotten&force_mssante=0",
            success: function (html) {
                $(".panel-body").html(i18n.tr(html));
                $("#rpps").focus();
            },
        });
    } else if (login == "ex") {
        $.ajax({
            url: "index.php?mode=nel=forgorce_mssante=1",
            success: function (html) {
                $(".panel-body").html(i18n.tr(html));
                $("#rpps").focus();
            },
        });
    } else {
        $.ajax({
            url: "index.php?mode=phel=internal_or_external",
            success: function (html) {
                $(".panel-body").html(i18n.tr(html));
                $("#rpps").focus();
            },
        });
    }
} else {
    $.ajax({
        url: "index.php?mode=pel=forgotten",
        success: function (html) {
            $(".panel-body").html(i18n.tr(html));
            $("#rpps").focus();
        },
    });
}
}

这是最短的一个更容易理解

function ajaxRequest(GETQuery) {
  $.ajax({
    url:'index_content?'+GETQuery,
    success: function(html) { 
      $(".panel-body").html(i18n.tr(html));
      $("#rpps").focus();}
    })
  }
}