Append List values using JQuery

后端 未结 3 1037
小蘑菇
小蘑菇 2021-01-23 01:15

using JQuery append how to push list values to another div section on button click

For example:

I have two list values

1.Adam  

2.Lance
         


        
3条回答
  •  清酒与你
    2021-01-23 01:36

    You can get the label text using .prev() and .text()

    $("button").click(function () {
        var label = $(this).prev().text();
        $("#sortable").append('
  • '+label+'
  • '); });

    JSFiddle demo

提交回复
热议问题