Transfer data from table

后端 未结 2 1306
傲寒
傲寒 2021-01-29 12:19

I have a table in HTML.


  JOHN DOE
  DO         


        
2条回答
  •  感情败类
    2021-01-29 13:22

    Here is the jsfiddle I don't know how you handle your popup but this is how your js should be structured.

    $(function(){
        $('a').click(function(){
          $('h3').html($(this).html())
        });
    });
    

提交回复
热议问题