所以这是我的 html 代码(重要的部分在三引号中):
<!DOCTYPE html>
<html>
<head>
<title>To Do</title>
<link rel="stylesheet" type="text/css" href="ToDoApp.css"/>
"""<script type="text/javascript" src="ToDoApp.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.min.js"></script>"""
</head>
<body>
<h2>To Do</h2>
<form name="checkListForm">
<input type="text" name="checkListItem"/>
</form>
<div id="button">Add!</div>
<br/>
<div class="list">
<ol></ol>
</div>
<div class = "counter">
<h4>Things to do:</h4>
</div>
<div class = "comment"></div>
</body>
</html>
并且我的 .css 连接工作正常,但我的 .js/jquery 连接无法正常工作。我尝试查找正确的 html 语法以包含链接,并尝试在 jquery 库的几个不同链接之间交替。我在这里遗漏了什么,是我把链接放错了地方,还是语法很时髦?提前感谢您的帮助。