我在我的网站上使用免费天气预报小部件。
<script type="text/javascript" src="http://tools.tititudorancea.com/weather_forecast.js?place=zurich_2&s=1&days=5&utf8=no&columns=5&temp=c"></script>
<div style="font: 10px Arial, sans-serif; color: #000000" align="right">
<a href="http://www.tititudorancea.com/z/weather.htm">Weather forecast</a> provided by <a href="http://www.tititudorancea.com/">tititudorancea.com</a></div>
我的网页永远不会重新加载,然后天气永远不会更新。 有没有办法刷新javascript而不刷新所有页面?
提前致谢
答案 0 :(得分:2)
您可以在网址末尾添加虚假查询var以强制刷新。首先在脚本标记中添加一个ID,然后尝试:
var weather = document.getElementById('weather');
weather.src += '&bogus='+ new Date(); // init
setInterval(function() {
weather.src = weather.src.replace(/&.+$/, '&bogus='+ new Date());
}, 1000);
答案 1 :(得分:0)
这是我找到的解决方案。
var weatherURLSite = "http://tools.tititudorancea.com/weather_forecast.js?place=$placeID$&s=1&days=5&utf8=no&columns=5&temp=c";
var specificWeather = weatherURLSite.replace("$placeID$", value);
$.ajax({
type: "POST",
async: false,
url: weatherURL,
data: { url: specificWeather }
}).done(
function (content) {
var li = "<li id='" + value + "'>" + content + creditsDiv + "</li>";
$("#weather").append(li);
});
我添加了一个定时器来定期刷新
var weatherTimer = self.setInterval(function () { GetReloadWeather('@Url.Action("GetWeather","Weather")'); }, 3600000);
答案 2 :(得分:0)
在我的项目中,我最终得到了jQuery的“replaceWith”函数
jQuery("script").eq(2).replaceWith('<script type="text/javascript" src="/state.js"></script>');