0

iframe と javascript を配置する場所に文字列がありますが、htmlStringどういうわけか JavaScript が実行されていませんloadHTMLString

NSString *htmlString = [NSString stringWithFormat:

                                @"<html><head><meta name = \"viewport\"content = \"initial-scale = 1.0, user-scalable = no\"/><script type=\"text/javascript\">"
                                @"alert (\"hello1\")"
                                @"function ready() {"
                                    // Keep a reference to Froogaloop for this player
                                @"var player = $f(player),"
                                @"$fplayer.api('play');}"

                                @"window.addEventListener('load', function() {"
                                @"alert (\"hello\")"
                                @"                                               $f(player).addEvent('ready', ready);"
                                @"                                           });"


                                @" </script></head><body><iframe id=\"player\" src=\"http://player.vimeo.com/video/8118831?api=1&amp;player_id=player\" width=\"320\" height=\"480\" frameborder=\"0\" webkitallowfullscreen allowfullscreen></iframe>"
                                @"</body></html>",@"http://www.vimeo.com/8118831"
                              ];
4

1 に答える 1

0

基本的に、 Githubからfroogaloop.jsをインポートする必要があります。次に、次を使用します。

NSString *htmlString = [NSString stringWithFormat:@"  <html><head><script src=\"froogaloop.js\"></script><script>function ready() {$f(document.getElementById(\"player\")).api(\"play\");}function func1() {$f(document.getElementById(\"player\")).addEvent(\"ready\", ready);}window.onload=func1;</script></head><body><iframe id=\"player\" src=\"http://player.vimeo.com/video/39287488?api=1&amp;player_id=player\" width=\"320\" height=\"480\" frameborder=\"0\"></iframe></body></html>"];

また、それに使用することを忘れないUiWebViewDelegateでください。

于 2012-08-21T13:44:05.420 に答える