Replace Div with another Div

前端 未结 3 1384
悲哀的现实
悲哀的现实 2020-11-30 08:29

I have this thing I m trying to do. I have a main picture of a map and within that map there are regions. These regions have hot spots on them so you can click them and it w

3条回答
  •  忘掉有多难
    2020-11-30 09:02

    You can use .replaceWith()

    $(function() {
    
      $(".region").click(function(e) {
        e.preventDefault();
        var content = $(this).html();
        $('#map').replaceWith('
    ' + content + '
    '); }); });
    
    
    

提交回复
热议问题