Phonegap-0.94,苹果iPhone操作系统4.2.1:Youtube链接不能启动Youtube应用程序



我使用phonegap创建了一个基本的项目。并将这段HTML代码添加到index. HTML中点击youtube链接会在Phonegap中启动youtube移动网站(一旦启动,就没有办法回到我的Phonegap视图)

我如何使HREF链接在iPhone/iPad上打开本地youtube应用程序?这些href链接符合苹果的Youtube链接规范https://developer.apple.com/library/safari/featuredarticles/iPhoneURLScheme_Reference/文章/YouTubeLinks.html

我的index . html。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/ 
TR/html4/strict.dtd"> 
<html> 
  <head> 
        <!-- Change this if you want to allow scaling --> 
    <meta name="viewport" content="width=default-width; user- 
scalable=no" /> 
    <meta http-equiv="Content-type" content="text/html; 
charset=utf-8"> 
    <title>MyTube</title> 
        <!-- iPad/iPhone specific css below, add after your main css > 
        <link rel="stylesheet" media="only screen and (max-device-width: 
1024px)" href="ipad.css" type="text/css" /> 
        <link rel="stylesheet" media="only screen and (max-device-width: 
480px)" href="iphone.css" type="text/css" /> 
        --> 
        <!-- If you application is targeting iOS BEFORE 4.0 you MUST put 
json2.js from http://www.JSON.org/json2.js into your www directory and 
include it here --> 
        <script type="text/javascript" charset="utf-8" src="phonegap. 
0.9.4.min.js"></script> 
    <script type="text/javascript" charset="utf-8"> 
        // If you want to prevent dragging, uncomment this section 
        /* 
        function preventBehavior(e) 
        { 
      e.preventDefault(); 
    }; 
        document.addEventListener("touchmove", preventBehavior, false); 
        */ 
        function onBodyLoad() 
        { 
                document.addEventListener("deviceready",onDeviceReady,false); 
        } 
        /* When this function is called, PhoneGap has been initialized and is 
ready to roll */ 
        function onDeviceReady() 
        { 
                // do your thing! 
        } 
    </script> 
  </head> 
  <body onload="onBodyLoad()"> 
        <h1> My You tube Links </h1> 
        <a href="http://www.youtube.com/v/NkTrG-gpIzE"> SOURCE-CODE 
Trailer </a> 
  </body> 
</html> 

我试过了,得到了同样的结果。这很奇怪,因为我也假设链接到YT会触发原生YouTube应用程序。我发现的一件事是嵌入会做你想要的,但没有遇到任何其他方式。

<object width="300" height="199">
    <param name="movie" value="http://www.youtube.com/v/NkTrG-gpIzE?fs=1&amp;hl=en_US&amp;rel=0"></param>
    <param name="allowFullScreen" value="true"></param>
    <param name="allowscriptaccess" value="always"></param>
    <embed src="http://www.youtube.com/v/NkTrG-gpIzE?fs=1&amp;hl=en_US&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="300" height="199"></embed>
</object>

我唯一的其他建议是让你在PhoneGap谷歌组发帖,但我看到你几分钟前才这么做。如果我发现了其他的东西,我会尝试分享,但嵌入方法是目前为止唯一有效的方法。

最新更新