如果在
Android设备上打开,我希望我的网站重定向到Google Play Market中的特定应用.我按照
http://developer.android.com/guide/publishing/publishing.html上的说明操作:
"Display the details screen for a specific application: http://play.google.com/store/apps/details?id=<package_name>".
<a href="http://play.google.com/store/apps/details?id=<package_name>">Download app</a>
但是,如果我使用javascript检测设备并尝试重定向浏览器,则会自动将http:// …更改为https:// …并且用户将被重定向到Google Play网站而不是Google Play应用电话.
if(navigator.userAgent.toLowerCase().indexOf("android") > -1) { if(confirm("Download app?")) { window.location.href= "http://play.google.com/store/apps/details?id=<package_name>"; } }
有没有办法改变这种行为,我的测试设备是三星Galaxy与Android 2.3.3?