它非常奇怪但却是真实的。我从safari和chrome一直收到这个错误。 bootstrap请求jQuery。 这是我嵌入我的js文件的方式
</footer>
</body>
<script async src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script async src="js/js.js"></script>
</html>
这就是它在Safari中的样子 enter image description here 这就是它在Chrome中的样子 enter image description here
有人可以帮忙吗? 提前谢谢
答案 0 :(得分:0)
尝试删除 <p id="myP">This is a p element.</p>
<button type="button" onclick="myFunction()">Hide content of p</button>
<script>
function myFunction() {
var which= document.getElementById("myP");
if (which.style.visibility=="visible")
which.style.visibility = "hidden"
else
which.style.visibility = "visible"
}
</script>
</body>
属性。引导代码应该在jQuery之后加载,目前情况并非如此。