如何在 Bootstrap 中创建警告通知警报?
Bootstrap 提供了一组类和组件来创建警报消息,这些消息可用于通知用户不同类型的信息,例如错误、警告和成功消息。警告警报通常用于通知用户网站或应用程序上的问题或错误。
Bootstrap 中的“alert-warning”类用于发出警报并向用户指示警告消息。您可以使用它来向用户传达不同类型的消息,例如成功、危险、信息等,方法是使用不同的类,例如 alert-success、alertdanger、alert-info 等。
方法
我们在 Bootstrap 中创建警告通知警报有两种不同的方法,包括以下方法:
使用“带链接的警报”
使用“可关闭的警报”
让我们详细了解每个步骤。
方法 1:使用“带链接的方法”
第一种方法是在 Bootstrap 中创建警告通知警报作为“带链接的警报”。带链接的警报是一种包含链接的警告消息,用于提供其他信息或将用户带到特定页面。此类警报通常用于通知用户网站或应用程序上的潜在问题或错误。要在 Bootstrap 中创建带链接的警报,您可以在警报元素内的锚标记(<a>)上使用“alert-link”类。
示例
以下是在 Bootstrap 中使用“带链接的方法”创建警告通知警报的示例。
<!DOCTYPE html> <html> <head> <title>Bootstrap Alert with Link</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" /> </head> <body> <div class="container py-5"> <h4 class="text-center text-uppercase"> Bootstrap Alert with Link </h4> <div class="alert alert-warning"> <strong>Warning!</strong> There was a problem with the connection. <a href="#" class="alert-link">Please contact support.</a> </div> </div> </body> </html>
方法 2:使用“可关闭的方法”
第二种方法是在 Bootstrap 中创建警告通知警报作为“可关闭的警报”。它允许用户通过单击关闭按钮轻松关闭警报。通过向警报添加“alert-dismissible”类,该类显示一个关闭按钮,用户可以单击该按钮以关闭警报。
示例
以下是在 Bootstrap 中使用“可关闭的警报方法”创建警告通知警报的示例。
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/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/4.1.3/js/bootstrap.min.js"></script> </head> <body> <div class="container "> <h4 class="text-center text-uppercase"> Example of a warning alert with a button </h4> <div class="alert alert-warning alert-dismissible fade show" role="alert"> <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> <h5 class="alert-heading">Warning</h5> <p>"This is a warning message. Please be aware that the content of this page may be outdated and should be used for informational purposes only. Any decisions or actions taken based on this information are the sole responsibility of the user. We recommend seeking professional advice before making any important decisions. Thank you for your understanding."</p> <hr> <p>Click the button to dismiss this alert.</p> <button type="button" class="btn btn-secondary mt-3" datadismiss="alert">Dismiss</button> </div> </div> </body> </html>
结论
在本文中,我们研究了在 Bootstrap 中创建警告通知警报的两种不同方法。在这里,我们使用两种不同的方法“带链接的警报”和“可关闭的警报”。“带链接的方法”涉及创建包含链接的警告消息,以提供其他信息或将用户带到特定页面。“可关闭的警报”方法涉及创建用户可以关闭的警告消息。这两种方法各有优缺点,具体取决于项目的具体需求。