Can't change bootstrap Tooltip title

后端 未结 7 1225
傲寒
傲寒 2021-01-12 09:28

I\'ve already looked over several posts on stack overflow asking virtually the exact same question yet none of what I found on those questions has helped. I\'m very new to

7条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-12 09:57

    Try following,

    $(document).ready(function(){
                $('#bag0').attr('title', 'new text')
                      .tooltip('destroy') // if you are using BS4 use .tooltip('dispose')
                      .tooltip({ title: 'new text'});
                $('[data-toggle="tooltip"]').tooltip('show');
    
    });
    
    
    
    
    

提交回复
热议问题