我正在使用bootstrap 3并创建一个悬停弹出链接。
这是我的代码
$('.toop').popover({html:true,trigger:'hover',placement:'bottom', });
html
<span class="glyphicon glyphicon-phone-alt icontip toop" data-container="body" data-toggle="popover" data-original-title="Phone" data-placement="left" data-content="my content and link goes here"></span>
我该怎么做才能将鼠标悬停在popover内容上。现在,如果我将鼠标悬停在图标上,则内容将会突然显示,并且当将鼠标悬停在图标上时它将消失。我希望当悬停图标时弹出窗口显示,用户也可以悬停到弹出窗口内容,只有当用户将鼠标悬停在图标和弹出窗口内容时才会消失。