i フレームを使用して、他のさまざまなページが「アプリ」として組み込まれている Web サイトを作成しました。
<iframe id="frame1" src="./app1.php">
<iframe id="frame2" src="./app2.php">
これらのアプリでは、非常に頻繁な HTTP リクエストの中でもとりわけ、JavaScript コードが実行されています。
$('#app1button').click(function () {
//Here i have to stop the HTTP-Requests which where fired from the JS of App2
hideAllApps();
showApp(app1);
});
app1 はサーバーから非常に頻繁に情報をポーリングしています。
app1.php には Javascript が含まれています::
Handler = window.setInterval(getStatus, 100); //start status messages
app2 をクリックすると、他のアプリがポップアップします。パフォーマンス上の理由から、app1.php に読み込まれた JavaScript を停止したいと考えています。
$('#app2button').click(function () {
//Here i have to stop the HTTP-Requests which where fired from the JS of App1
hideAllApps();
showApp(app2);
});
どうやってやるの?あなたはなにか考えはありますか?
前もって感謝します。