嗨,我正在尝试一些 jQuery,但一点运气都没有。正在编写代码,什么没有,没有任何工作。所以我尝试了一些来自 w3schools 的 JQuery,但都没有成功。知道为什么我不能让它工作吗?
我在我的 html 的头部有这个
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
还是不行。
感谢任何帮助谢谢米奇
<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("#div1").fadeIn();
$("#div2").fadeIn("slow");
$("#div3").fadeIn(3000);
});
});
</script>
</head>
<body>
<p>Demonstrate fadeIn() with different parameters.</p>
<button>Click to fade in boxes</button>
<br><br>
<div id="div1" style="width:80px;height:80px;display:none;background-color:red;"></div> <br>
<div id="div2" style="width:80px;height:80px;display:none;background-color:green;"> </div><br>
<div id="div3" style="width:80px;height:80px;display:none;background-color:blue;"> </div>
</body>
</html>
将其复制到记事本中,保存然后在chrome中运行,当我按下按钮时什么也没发生。
感谢所有帮助的人