我有 3 个 html 文件和 3 个 js 文件
index.html,rank.html,score.html
global.js,rank.js,score.js
在 index.html 中,我使用 iframe 包含了 rank.html 和 score.html。
在 global.js 中,我声明了 Var rank;& global.js 包含在 rank.html & score.html 中。
我正在更新 rank.js 中的排名值,并且我想访问 score.js 中的更新值。在 score.js 我没有得到更新的值它给出了 UNDEFINED 值。
我不想在 score.html 中包含 rank.js,所以我创建了 global.js 并包含在 html 文件中。
这是我的代码,
索引.html
<html>
<head>
</head>
<body>
<iframe src="../rank/rank.html" frameborder = "0" scrolling="no" width="50%" height = "100%"></iframe>
<iframe src="score.html" frameborder = "0" scrolling="no" width="50%" height = "100%"></iframe>
</body>
</html>
global.js
var rank;
score.js
$(document).ready(
function(){
setInterval(dataupdate, 10000);
});
function dataupdate() {
alert(rank)
};
rank.js
$(document).ready(
function(){
setInterval(dataupdate, 10000);
});
function dataupdate() {
rank = "first";
};
我想更新 score.js 文件中的排名值如何访问该值...
谢谢.....