这就是我创建popper对象的方法:
varpositioner = new Popper($(".js-search-container").get(0),
$(".js-search").get(0),
{
placement: 'bottom-start',
offsets: {
top: '10px',
}
}
);
我想在js-search-container
和js-search
对象之间创建一些偏移量,但我设置偏移量的尝试似乎没有效果。
到目前为止我的调查:
答案 0 :(得分:2)
改为使用此代码。
varpositioner = new Popper($element, tip, {
placement: attachment,
modifiers: {
offset: {
offset: "-10,0"
}
});