有什么方法可以删除触发元素的 ID 或文本。现在在按钮上触发添加/删除选定的文本,但是如果我们点击了多个,当我第二次点击选定的按钮时,点击按钮的文本会添加到列表中,从列表中删除所有文本,但我只需要删除选定的内容。任何解决方案?
jQuery
$(document).ready(function() {
var txt = "";
$("#_button").children().toggle(function() {
txt = $(this).text();
$(this).css("background", "blue");
$("#place").append("<td>" + txt + "</td>");
}, function() {
$("#place").children(this).remove();
$(this).css("background", "red");
});
});
HTML
<ul id="_button">
<li id="a" value="30">a</li>
<li id="b" value="30">b</li>
<li id="c" value="30">c</li>
</ul>
<table>
<tr id="place">
</tr>
</table>