Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个列表,当用户添加新列表时,这个列表会增加。目前,当用户单击添加按钮时,它将用新值替换旧值,我想保留旧值,并在用户单击添加按钮时添加新值。
我知道在这部分可以做些什么,但我不知道如何去做。请帮忙,谢谢。
if(radio == '1'){ $( "#summary" ).html( "<li class='holi'>Every Week</li>" ); }
添加新列表
使用.append()而不是.html()追加到列表中。
.append()
.html()
这假设#summary是ul您要添加的。相反,如果它是包含div,您可以将选择器修改为$("#summary ul")。
#summary
ul
div
$("#summary ul")
JSFiddle
在 li 标签内制作两个跨度,一个用于内容,一个用于编辑链接
$('.editlinkclass').on('click',function(){ //this will give you content span and you can do whatever you want to do with this $(this).prev(); })
您需要使用.append()。
$( "#summary" ).append( "<li class='holi'>Every Week</li>" );
菲德尔演示