HTML,CSS这是什么样的消息/对话框?

时间:2018-12-19 05:11:42

标签: html css

这是警报框吗?

enter image description here

enter image description here

我在搜索它,但是还没有看到任何答案。.TIA

2 个答案:

答案 0 :(得分:0)

它称为工具提示,在流行的框架(如引导程序)中,您可以像this

那样使用它

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Bootstrap Example</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
  <h3>Tooltip Example</h3>
  <a href="#" data-toggle="tooltip" title="Hooray!" data-placement="right">Hover over me</a>
</div>

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

</body>
</html>

答案 1 :(得分:0)

这不是警报框。这是引导程序的工具提示。

在此处查看文档:{​​{3}} [Bootstrap Tooltip documentation]