在使用带有此代码的在线编辑器时,我注意到:
<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
$(document).ready(function () {
$("button").click(function () {
$("p").hide();
});
});
</script>
<script>
</script>
</head>
<body>
<h2>This is a heading</h2>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button>Click me</button>
</body>
</html>
该代码和一切都在在线编辑器上运行良好,但是,添加直接复制到 HTML 文件中的相同代码不会产生所需的结果。我究竟做错了什么?它也适用于 jsfiddle,但我想知道为什么纯源(上图)不起作用。我在任何处理 jQuery 的网站上找到的所有代码示例都是这样的。