Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Bootstrap 4 弹出框


Bootstrap 4 弹出框

弹出框组件类似于工具提示,它是一个弹出框,当用户点击某个元素时会出现。区别在于弹出框可以包含更多内容。

切换弹出框

如何创建弹出框

要创建弹出框,请将 data-toggle="popover" 属性添加到元素。

使用 title 属性指定弹出框的标题文本,并使用 data-content 属性指定应在弹出框主体中显示的文本。

<a href="#" data-toggle="popover" title="弹出框标题" data-content="弹出框内的一些内容">切换弹出框</a>

注意: 弹出框必须使用 jQuery 初始化:选择指定的元素并调用 popover() 方法。

以下代码将启用文档中的所有弹出框

示例

<script>
$(document).ready(function(){
  $('[data-toggle="popover"]').popover();
});
</script>
试一试 »


弹出框定位

默认情况下,弹出框将出现在元素的右侧。

使用 data-placement 属性设置弹出框在元素顶部、底部、左侧或右侧的位置。

示例

<a href="#" title="标题" data-toggle="popover" data-placement="top" data-content="内容">点击</a>
<a href="#" title="标题" data-toggle="popover" data-placement="bottom" data-content="内容">点击</a>
<a href="#" title="标题" data-toggle="popover" data-placement="left" data-content="内容">点击</a>
<a href="#" title="标题" data-toggle="popover" data-placement="right" data-content="内容">点击</a>
试一试 »

注意: 如果没有足够的空间,放置属性将不会按预期工作。例如:如果您在页面顶部使用顶部放置(那里没有空间),它会将弹出框显示在元素下方或右侧(无论哪里有空间)。


关闭弹出框

默认情况下,当您再次点击元素时,弹出框会关闭。但是,您可以使用 data-trigger="focus" 属性,它将在点击元素外部时关闭弹出框。

示例

<a href="#" title="可关闭弹出框" data-toggle="popover" data-trigger="focus" data-content="点击文档中的任何位置关闭此弹出框">点击我</a>
试一试 »

提示: 如果您希望弹出框在将鼠标指针悬停在元素上时显示,请将 data-trigger 属性的值设置为 "hover"

示例

<a href="#" title="标题" data-toggle="popover" data-trigger="hover" data-content="一些内容">将鼠标悬停在我上面</a>
试一试 »

完整的 Bootstrap 弹出框参考

有关所有弹出框选项、方法和事件的完整参考,请访问我们的 Bootstrap JS 弹出框参考


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.