こんにちは、私はいくつかの 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>
それをメモ帳にコピーして保存し、クロムで実行しましたが、ボタンを押しても何も起こりませんでした。
助けてくれたみんなに感謝します