在 Framework7 中使用动态弹出窗口
优质
小牛编辑
128浏览
2023-12-01
描述 (Description)
您还可以使用HTML到App方法创建动态弹出窗口。 它使用两个参数 -
popupHTML - 它包含Popup内容的字符串元素。
removeOnClose - 它包含布尔值,当您关闭Popup时,它将从DOM中删除。 默认情况下,它包含真值。
例子 (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>Dynamic Popup</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">Dynamic Popup</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 = "first_page">Open the Popup</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
});
$$('.first_page').on('click', function () {
var popupHTML = '<div>'+
'<div class = "content-block">'+
'<p>You have created the Popup dynamically!!!</p>'+
'<p><a href = "#" class = "close-popup">Close the Popup</a></p>'+
'</div>'+
'</div>'
myApp.popup(popupHTML);
});
</script>
</body>
</html>
输出 (Output)
让我们执行以下步骤,看看上面给出的代码是如何工作的 -
将上面给出的HTML代码保存为服务器根文件夹中的popup_dynamic.html文件。
以http://localhost/popup_dynamic.html打开此HTML文件,输出显示如下。