เข้าชม :
889
เขียนเว็บแสดงผลบนมือถือ |
|
ทำเว็บแสดงบนมือถือ
|
[ ความเห็นที่ 1]
RE : เขียนเว็บแสดงผลบนมือถือ โพสต์เมื่อ: วันเสาร์ 23 กรกฎาคม 2554 00:38 น.
iPhone :
<script type="text/javascript"> if ((navigator.userAgent.indexOf('iPhone') != -1)) { document.location = "http://www.Eyyad.net"; } </script> iPad : <script type="text/javascript"> if ((navigator.userAgent.indexOf('iPad') != -1)) { document.location = "http://www.Eyyad.net"; } </script> Android: <script type="text/javascript"> if ( (navigator.userAgent.indexOf('Android') != -1)) { document.location = "http://www.Eyyad.net"; } </script> BlackBerry <script type="text/javascript"> if ((navigator.userAgent.indexOf('BlackBerry') != -1) ) { document.location = "http://www.Eyyad.net"; } </script> |
Detect iPad, iPhone, BlackBerr |
[ ความเห็นที่ 2]
RE : เขียนเว็บแสดงผลบนมือถือ โพสต์เมื่อ: วันเสาร์ 23 กรกฎาคม 2554 01:23 น.
ตัวอย่าง
<script type="text/javascript"> if ((navigator.userAgent.indexOf('iPad') != -1)) { document.location = "http://www.bandthai.com/ipad.php"; } else{ document.location = "http://www.bandthai.com/main.php"; } </script> |
ยกตัวอย่าง |
|