我想創建一個待辦事項列表。當我打開HTML文件(我使用谷歌瀏覽器),似乎有兩個問題:如何附加用戶輸入? jQuery
- 的按鈕不會顯示爲一個按鈕,它不點擊。
- 當我按Enter鍵而不是嘗試單擊添加按鈕時,文本就會消失。
但是在這兩種情況下,兩種方法都不會附加用戶輸入。我需要解決什麼問題?
我有以下幾點:
$(document).ready(function() {
$('#button').click(function() {
var toAdd = $('input[name=checkListItem]').val();
$('.list').append("<div class='item'>" + toAdd + "</div>");
});
});
h2 {
font-family: arial;
}
form {
display: inline-block;
}
#button {
display: inline-block;
height: 20px;
width: 70px;
background-color: #cc0000;
font-family: arial;
font-weight: bold;
color: #ffffff;
border-radius: 5px;
text-align: center;
margin-top: 2px;
}
.list {
font-family: garamond;
color: #cc0000;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<h2>To Do</h2>
<form name="checkListForm">
<input type="text" name="checkListItem" />
</form>
<div id="button">Add!</div>
<br/>
<div class="list"></div>
可能按鈕不看起來像一個按鈕,因爲它是你的代碼上的'div'。嘗試使用'
該按鈕適用於我。 – Barmar
你爲什麼期望按下按鈕來做任何事情?你沒有這個事件處理程序。 – Barmar