"
// ตรวจสอบว่าไม่ได้อยู่ที่หน้าแรก
if (CurrentPage > 1) {
ResulthtmlPage += "
";
}
var pagesToShow = 10; // จำนวนหน้าที่ต้องการแสดง
var startPage = Math.max(1, CurrentPage - Math.floor(pagesToShow / 2));
var endPage = Math.min(numberOfPages, startPage + pagesToShow - 1);
for (var j = startPage; j <= endPage; j++) {
if (j == CurrentPage) {
ResulthtmlPage += "
";
} else {
ResulthtmlPage += "
";
}
}
// ตรวจสอบว่าไม่ได้อยู่ที่หน้าสุดท้าย
if (CurrentPage < numberOfPages) {
ResulthtmlPage += "
";
}
ResulthtmlPage += ""
$("#divSearchPageResult").html(ResulthtmlPage);
$("#searchItems").html(allItems);
}
},
error: function (xhr, status, error) {
if (xhr.status === 302 && !textsearchRetried302) {
console.log("Error 302 occurred in ajax request, retrying...");
textsearchRetried302 = true;
textsearchAjaxRequest(PostAction, DataObj, guid);
} else {
console.log("Error occurred in ajax request:", error);
}
}
});
// return fetch('/your-endpoint', {
// method: 'POST',
// headers: {
// 'Content-Type': 'application/json',
// 'RequestVerificationToken': token
// },
// body: JSON.stringify({ /* your data here */ })
// });
} else {
throw new Error('Failed to retrieve anti-forgery token');
}
})
// .then(response => {
// if (response.ok) {
// console.log('Data sent successfully');
// } else {
// console.error('Error sending data:', response.statusText);
// }
// })
.catch(error => {
console.error('Error :', error);
});
}
function SearchPage(type, pid) {
var S_searchtext = $('input#txtSearch').val();
//console.log(pid);
if (type != "") {
var getlocation = window.location.origin + window.location.pathname;
//console.log(getlocation);
if (S_searchtext != false) {
var SS_page = 1;
if (pid != "") {
SS_page = pid;
}
//url = getlocation + "?searchtext=" + S_searchtext + "&page=" + SS_page;
//console.log(url);
//window.location.href = url;
var Obj = {
searchText: S_searchtext,
page: SS_page
};
CallAjaxSearch("Textsearch", Obj);
}
}
}
var getUrlParameter = function getUrlParameter(sParam) {
var sPageURL = window.location.search.substring(1),
sURLVariables = sPageURL.split('&'),
sParameterName,
i;
for (i = 0; i < sURLVariables.length; i++) {
sParameterName = sURLVariables[i].split('=');
if (sParameterName[0] === sParam) {
return sParameterName[1] === undefined ? true : decodeURIComponent(sParameterName[1]);
}
}
return false;
};
การใช้และการจัดการคุกกี้
ธนาคารมีการใช้เทคโนโลยี เช่น คุกกี้ (cookies) และเทคโนโลยีที่คล้ายคลึงกันบนเว็บไซต์ของธนาคาร เพื่อสร้างประสบการณ์การใช้งานเว็บไซต์ของท่านให้ดียิ่งขึ้น โปรดอ่านรายละเอียดเพิ่มเติมที่ นโยบายการใช้คุกกี้ของธนาคาร
การใช้และการจัดการคุกกี้
ธนาคารมีการใช้เทคโนโลยี เช่น คุกกี้ (cookies) และเทคโนโลยีที่คล้ายคลึงกันบนเว็บไซต์ของธนาคาร เพื่อสร้างประสบการณ์การใช้งานเว็บไซต์ของท่านให้ดียิ่งขึ้น โปรดอ่านรายละเอียดเพิ่มเติมที่ นโยบายการใช้คุกกี้ของธนาคาร
Sorry, we cannot find
the page you are looking for!
ขออภัยค่ะ ไม่พบหน้าที่ท่านต้องการ
กลับสู่หน้าหลัก
" + data.items[i].content + "";
}
$(".results").css("display", "block");
$(".result-list").css("display", "block");
$(".no-results").css("display", "none");
$(".search-result .results").addClass("active")
$("#divSearchResult").html(Resulthtml);
$(".div-predic-search").css("display", "none");
//วนวาด Pages
var ResulthtmlPage = "";
ResulthtmlPage += "
"
// ตรวจสอบว่าไม่ได้อยู่ที่หน้าแรก
if (CurrentPage > 1) {
ResulthtmlPage += "