我似乎无法让这个天气频道脚本在我的主页上运行。我最初从 TWC 收到了这个脚本:
document.write('<scr'+'ipt src="'+document.location.protocol+'//wow.weather.com/weather/wow/module/'+wx_locID+'?config='+wx_config+'&proto='+document.location.protocol+'&target='+wx_targetDiv+'"></scr'+'ipt>');
我收到了对使用 jQuery 的 AJAX getScript 方法的 Google 论坛帖子的回复,该方法似乎可以在在线编辑器 JSFiddle 中使用。
$(function () {
$.getScript(document.location.protocol + '//wow.weather.com/weather/wow/module/' + wx_locID + '?config=' + wx_config + '&proto=' + document.location.protocol + '&target=' + wx_targetDiv);
});
它仍然无法在页面上运行,并导致脚本的其余部分也不显示。
<body>
<div id="chart_div" style="width: 900px; height: 500px;"></div>
<div id="wx_module_1232">
<a href="http://www.weather.com/weather/local/98501">Olympia Weather Forecast, WA (98501)</a>
</div>
</body>
它可能只是我缺少的 AJAX 导入,因为我是网站建设的新手。