Load a Twitter Bootstrap Popover on Page load

前端 未结 6 1848
时光取名叫无心
时光取名叫无心 2021-01-13 20:33

I have the following BootStrap popover:



        
6条回答
  •  攒了一身酷
    2021-01-13 21:24

    I found this way to be convenient:

    You can trigger the 'show' and set options in one fell swoop:

    $('#elementToPointAt').popover({
       'placement':'bottom',
       'content':'Look at me!'
    }).popover('show');
    

提交回复
热议问题