Changing the width of Bootstrap popover

后端 未结 23 1533
北恋
北恋 2020-11-27 10:51

I am designing a page using Bootstrap 3. I am trying to use a popover with placement: right on an input element. The new Bootstrap ensures that if you use

23条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-27 11:22

    Try this:

    var popover_size=($('.popover').css('width'));
    var string=(popover_size).split('px');
    alert("string"+string);
    popover_size = ((parseInt(string[0])+350));
    alert("ps"+popover_size);
    $('.popover').css('width',parseInt(popover_size));
    

提交回复
热议问题