我一直试图让一个简单的jQuery示例现在可以工作几个小时。
<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("p").toggle();
});
});
</script>
</head>
<body>
<button>Toggle</button>
<p>This is a paragraph with little content.</p>
<p>This is another small paragraph.</p>
</body>
</html>
我似乎无法加载jQuery。
答案 0 :(得分:4)
可能,你在本地运行你的html
尝试在你的jquery网址中使用http:
-
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
答案 1 :(得分:0)
您的脚本网址上似乎缺少 http:前缀:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
答案 2 :(得分:0)
在您添加javascript时放置http:
:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
答案 3 :(得分:0)
更新此行代码
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
到
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
为src添加了https:
。