模态中的模态(Modals in Modals)
优质
小牛编辑
124浏览
2023-12-01
描述 (Description)
基础允许我们在模态中创建模态。
例子 (Example)
以下示例演示了在基础中使用modals in modals -
<!doctype html>
<head>
<meta charset = "utf-8" />
<meta http-equiv = "x-ua-compatible" content = "ie=edge" />
<meta name = "viewport" content = "width=device-width, initial-scale = 1.0" />
<title>Reveal Modal in Modal</title>
<link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/css/foundation.css">
<script src = "https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/js/vendor/jquery.min.js"></script>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/js/foundation.min.js"></script>
</head>
<body>
<h2>Reveal Modal in Modal Example</h2>
<p><a data-open="reveal_modal">Click here to open modal</a></p>
<div class = "reveal" id = "reveal_modal" data-reveal>
<h2>Foundation</h2>
<p>Foundation is a family of responsive front-end frameworks that make
it easy to design beautiful responsive websites, apps and emails
that look amazing on any device.
</p>
<a class = "button" data-toggle = "reveal_modal1">Click here to open another modal!</a>
<button class = "close-button" data-close aria-label = "Close reveal" type = "button">
<span aria-hidden = "true">×</span>
</button>
</div>
<div class = "reveal" id = "reveal_modal1" data-reveal>
<h2>This is another modal!!!</h2>
<p>Foundation is semantic, readable, flexible, and completely customizable.</p>
<button class = "close-button" data-close aria-label = "Close reveal" type = "button">
<span aria-hidden = "true">×</span>
</button>
</div>
<script>
$(document).ready(function() {
$(document).foundation();
})
</script>
</body>
</html>