javascript - Comment déterminer si une application est installée sur iOS sur une page Web mobile?
学习ing
学习ing 2017-07-01 09:12:24
0
1
1031

Sur la page web mobile, comment déterminer si une application est installée sur iOS ?

学习ing
学习ing

répondre à tous(1)
typecho

Cette question concerne segmentfault. La page Web IOS peut déterminer si une application est installée
Je ne l'ai pas regardée depuis longtemps. Essayez :

.
<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> 
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!