这是我的HTML;由于某种原因,它无法正常工作。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title></title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js">
</script>
</head>
<body>
<div id="container">
<h2></h2>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js">
$(document).ready(function() {
$("h2").html("Hello there!");
});
</script>
</body>
</html>
我是jQuery的新手,很抱歉,如果我犯了一个明显无知的错误。
答案 0 :(得分:2)
您只需要从脚本块中删除src
属性:
<script>
$(document).ready(function() {
$("h2").html("Hello there!");
});
</script>
这是因为否则您的浏览器将使用src
属性中指定的脚本而不是其包含块中的脚本