javascript - 手機端web頁面,怎麼判斷ios是否安裝了某個app?
学习ing
学习ing 2017-07-01 09:12:24
0
1
1032

手機端web頁面,怎麼判斷ios是否安裝了某個app?

学习ing
学习ing

全部回覆(1)
typecho

這個問題segmentfault上有. IOS 網頁能判斷有沒有安裝應用
很久沒去看了. 試試:

<script language="javascript">  
 if (navigator.userAgent.match(/(iPhone|iPod|iPad);?/i)) {  
  var loadDateTime = new Date();  
  window.setTimeout(function() {  
   var timeOutDateTime = new Date();  
   if (timeOutDateTime - loadDateTime < 5000) {  
    window.location = "要跳转的页面URL";  
   } else {  
    window.close();  
   }  
  },  
  25);  
  window.location = " apps custom url schemes ";  
 } else if (navigator.userAgent.match(/android/i)) {  
  var state = null;  
  try {  
   state = window.open("apps custom url schemes ", '_blank');  
  } catch(e) {}  
  if (state) {  
   window.close();  
  } else {  
   window.location = "要跳转的页面URL";  
  }  
 }  
</script> 
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!