<div style="padding:20px;">
<h2>关闭提醒框</h2>
<div data-alert="" class="alert-box">
This is a default alert box.
<a href="#" class="close">×</a>
</div>
<div data-alert="" class="alert-box secondary">
This is a secondary alert box.
<a href="#" class="close">×</a>
</div>
<div data-alert="" class="alert-box success">
<strong>Success!</strong> This alert box indicates a successful or positive action.
<a href="#" class="close">×</a>
</div>
<div data-alert="" class="alert-box info">
<strong>Info!</strong> This alert box indicates a neutral informative change or action.
<a href="#" class="close">×</a>
</div>
<div data-alert="" class="alert-box warning">
<strong>Warning!</strong> This alert box indicates a warning that might need attention.
<a href="#" class="close">×</a>
</div>
<div data-alert="" class="alert-box alert">
<strong>Alert!</strong> This alert box indicates a dangerous or potentially negative action.
<a href="#" class="close">×</a>
</div>
</div>
<script>
// 创始化 Foundation JS
$(document).ready(function() {
$(document).foundation();
})
</script>