Nesting Modals
优质
小牛编辑
124浏览
2023-12-01
描述 (Description)
你可以在另一个模态中使用一个模态。
例子 (Example)
以下示例演示了在Framework7中使用嵌套模式,它在其他模态中提供模态 -
<!DOCTYPE html>
<html>
<head>
<meta name = "viewport" content = "width = device-width, initial-scale = 1,
maximum-scale = 1, minimum-scale = 1, user-scalable = no, minimal-ui" />
<meta name = "apple-mobile-web-app-capable" content = "yes" />
<meta name = "apple-mobile-web-app-status-bar-style" content = "black" />
<title>Nesting Modals</title>
<link rel = "stylesheet"
href = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/css/framework7.ios.min.css" />
<link rel = "stylesheet"
href = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/css/framework7.ios.colors.min.css" />
</head>
<body>
<div class = "views">
<div class = "view view-main">
<div class = "navbar">
<div class = "navbar-inner">
<div class = "center sliding">Nesting Modals</div>
</div>
</div>
<div class = "pages">
<div data-page = "index" class = "page navbar-fixed">
<div class = "page-content">
<div class = "content-block">
<p><a href = "#" class = "nesting_modal">Enter your name:</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
<script type = "text/javascript"
src = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/js/framework7.min.js"></script>
<script>
// Here you can initialize the app
var myApp = new Framework7();
// If your using custom DOM library, then save it to $$ variable
var $$ = Dom7;
// Add the view
var mainView = myApp.addView('.view-main', {
// enable the dynamic navbar for this view:
dynamicNavbar: true
});
$$('.nesting_modal').on('click', function () {
myApp.prompt('Enter your name?', function (value) {
myApp.confirm('Hey...your name is : ' + value + '', function () {
myApp.alert('This is your name : "' + value + '"!!!');
});
});
});
</script>
</body>
</html>
输出 (Output)
让我们执行以下步骤,看看上面给出的代码是如何工作的 -
将上面给出的HTML代码保存为服务器根文件夹中的modal_nesting.html文件。
以http://localhost/modal_nesting.html打开此HTML文件,输出显示如下。
当您单击“输入您的名字”选项时,您将看到一个弹出向导,它执行一个功能并显示输入的文本。 输入文本作为输入并单击“确定”后,再次单击“确定”时将执行另一个功能。