我在w3schools.com上测试了以下代码;但是,当我在本地机器上尝试它时,它不起作用。我有一种感觉,原因是我没有 jquery.js 文件。我在想它只是 jquery 脚本声明的一部分,仅此而已。jquery.js 中写了什么?有没有我可以包含的替代文件?
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$(this).hide();
});
});
</script>
</head>
<body>
<button>Click me</button>
</body>
</html>