1

ページを自動的に更新できるように、Google Earth プラグインのインストールが完了したことを検出する方法はありますか?

インストール時にイベントが発生しなくても、インストールされているかどうかを定期的に確認する JavaScript 間隔を設定できますか?

4

1 に答える 1

1

この関数を使用して、プラグインのサポートとインストールされているかどうかを毎秒チェックできます。

  function googleEarthErrors() {
      if (google.earth.isSupported()) {
          alert('Google Earth Plugin is supported for this browser');
      } else {
          alert('Google Earth Plugin is NOT supported for this browser');
          return false;
      }
      if (google.earth.isInstalled()) {
          alert('Google Earth Plugin is installed');
      } else {
          alert('Google Earth Plugin is NOT installed');
          setTimeout('googleEarthErrors()', 1000);
  }

明らかに、アラートをより便利で煩わしくないものに置き換えたいと思うでしょう:)

また、この回答を確認する必要があり ます-JavaScriptを使用してGoogle Earthプラグインの存在を確認する方法は?

于 2012-05-04T20:52:52.730 に答える