Pager.prototype.goJBS0210 = function(params,isDirect) { var self = this; indicator.on(); self.execApi('/SJB_UII_JBS0210.json', params, function(response) { self.pageInfo = response.pageInfo; self.getHtml('JBS0210.html', function() { //viewNumber.on("S210"); //companyheader(2); //footer.on(2); // 20160826 ADD 本登録からの遷移 START // 「閉じるボタン」「戻るボタン」切替 if (isDirect) { $('.close0210').show(); $('.goJBS0010Back').hide(); } else { $('.close0210').hide(); $('.goJBS0010Back').show(); } // 本登録からの遷移 END $('.goJBS0220').click(function() { indicator.on(); self.goJBS0220(self.getJBS0220RequestParams()); return false; }); $('.goJBS0010Back').click(function() { indicator.on(); self.goJBS0010(self.getJBS0010_BACKRequestParams()); return false; }); self.setJBS0210DefaultParams(self.pageInfo); indicator.off(); }); }); }; Pager.prototype.setJBS0210DefaultParams = function(pageInfo) { $('#elm_USER_ID').val(pageInfo.elm_USER_ID); $('#elm_USER_PW').val(""); $('#eccReminderUrl').attr('href', pageInfo.eccReminderUrl); this.pageId = 'JBS0210'; }; Pager.prototype.getJBS0010_BACKRequestParams = function() { return { "MODE" : "JBS0010_BACK_DISPLAY" }; }; Pager.prototype.getJBS0220RequestParams = function() { return { "MODE": 'JBS0220_DISPLAY', "elm_USER_ID": $("#elm_USER_ID").val(), "elm_USER_PW": $("#elm_USER_PW").val() }; };