我正在尝试制作自己的待办事项列表应用程序,但第一步甚至都行不通!这是我的代码:
<!DOCTYPE html>
<html>
<head>
<title>To-Do List</title>
<script type='text/javascript' src='script.js'></script>
<!--JAVASCRIPT-->
<script>
</script>
<script src="jquery.js"></script>
<!--JQUERY-->
<script>
$(function() {
$("#new").click(function() {
$("html").append("<div><form> Category Name: <input type = \"text\">")
});
});
</script>
</head>
<!--USER INTERFACE-->
<div>
<p id = "new">New Category</p>
</div>
<div><p>Customize</p></div>
<div><p>Save this list</p></div>
</body>
</html>
当我在 Notepad++(Chrome 的最新版本)中打开应用程序时,单击“新类别”时没有任何反应。有什么帮助吗?