Javascript没有在github.io上执行但在本地工作

时间:2018-03-19 15:12:42

标签: javascript github github-pages

我的HTML中有以下javascript:

<script> 
// This is not needed when the the style is set in _layouts/base.html 
// document.body.style.visibility = 'hidden'; 
function makeBodyVisible() { document.body.style.visibility = 'visible'; } if (window.addEventListener) window.addEventListener("load", makeBodyVisible, false); 
else if (window.attachEvent) window.attachEvent("onload", makeBodyVisible); 
else window.onload = makeBodyVisible; 
</script> 

但是,当页面加载时,它仍然是隐藏的。我还检查过是否创建了window.onload或任何其他事件侦听器(使用getEventListeners),但没有。这让我相信脚本没有运行。奇怪的是,这只发生在我的github.io页面上,而本地就是这样。 有人可以告诉我发生了什么事吗? 这是网站:https://botev.github.io/

1 个答案:

答案 0 :(得分:1)

我看了你在答案中链接的网站 - 看起来这个脚本被注释掉了!因此不会运行。 附件是截图。

Screenshot of production code for https://botev.github.io/, showing the script in question is commented out.