-1

こんにちは、みんな、

空白の WinJS Store アプリを用意し、以下のコードを default.html ファイルに配置しました。

<iframe src="http://www.google.com" height="400" width="400"></iframe>

しかし、iframe は Google ホームページをロードしていません。ページは空白のままです。src の値を " http://www.palermo4.com " に置き換えると、問題なく動作します。なぜこの奇妙な動作です。一部の URL について、他のアクセス許可を取得する必要がありますか? 親切に私を助けてください。

前もって感謝します

4

2 に答える 2

0
You can't load ooogle in iframe,since they are blocking this facility.
You can use Iframe for some other sites,but you won't get full controll of their JS[Loading sites] ,may have to face some breaking point in such sites.

本当にGoogleをロードしたい場合は、これを試してください。

1. Make your default browser as IE10.
2. trigger an event.

function openYourLink(){    
var url = new Windows.Foundation.Uri("http://www.google.com")
Windows.System.Launcher.launchUriAsync(url);
}
于 2013-08-08T06:34:14.527 に答える