ดาวน์โหลดโมไบล์แอปคุณลูก
หมวด: ไม่จัดกลุ่ม
เผยแพร่เมื่อ: 06 มิถุนายน 2567
{source}<script type="text/javascript">
function getOsFromUserAgent() {
var userAgent = navigator.userAgent
var platform;
if (userAgent.match(/Android/i)) {
platform = 'Android'
window.location.href = 'https://play.google.com/store/apps/details?id=hda.app.khunlook'
} else if (userAgent.match(/iPhone/i) || userAgent.match(/iPad/i)) {
platform = 'iOS'
window.location.href = 'https://itunes.apple.com/us/app/khunlook-khun-luk/id961051837?ls=1&mt=8'
} else {
platform = 'non-Android or iOS'
// Fallback redirect for other platforms
window.location.href = 'https://www.khunlook.com'
}
document.getElementById('platform').innerHTML = platform
}
getOsFromUserAgent()</script>{/source}