我做了网站,在那里各种其他页面是内置的“应用程序”与I帧:
<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
现在当我点击APP 2,与其他应用程序弹出,我想停下来的JavaScript,这是加载app1.php,由于性能方面的原因。
$('#app2button').click(function () {
//Here i have to stop the HTTP-Requests which where fired from the JS of App1
hideAllApps();
showApp(app2);
});
我怎样才能做到这一点? 你有什么想法?
提前致谢。