- Framework7 教程
- Framework7 - 首页
- Framework7 - 概述
- Framework7 - 环境配置
- Framework7 组件
- Framework7 - 布局
- Framework7 - 导航栏
- Framework7 - 工具栏
- Framework7 - 搜索栏
- Framework7 - 状态栏
- Framework7 - 侧边栏
- Framework7 - 内容块
- Framework7 - 布局网格
- Framework7 - 覆盖层
- Framework7 - 预加载器
- Framework7 - 进度条
- Framework7 - 列表视图
- Framework7 - 手风琴
- Framework7 - 卡片
- Framework7 - 芯片
- Framework7 - 按钮
- Framework7 - 操作按钮
- Framework7 - 表单
- Framework7 - 标签页
- Framework7 - Swiper 滑块
- Framework7 - 图片浏览器
- Framework7 - 自动完成
- Framework7 - 选择器
- Framework7 - 日历
- Framework7 - 下拉刷新
- Framework7 - 上拉加载
- Framework7 - 消息
- Framework7 - 消息栏
- Framework7 - 通知
- Framework7 - 懒加载
- Framework7 样式
- Framework7 - 颜色主题
- Framework7 - 分割线
- Framework7 模板
- Framework7 - 模板概述
- Framework7 - 自动编译
- Framework7 - Template7 页面
- Framework7 快速点击
- Framework7 - 活动状态
- Framework7 - 长按事件
- Framework7 - 触摸涟漪
- Framework7 有用资源
- Framework7 - 快速指南
- Framework7 - 有用资源
- Framework7 - 讨论区
Framework7 - 提示模态框
描述
提示模态框允许用户对显示的内容执行某些操作。它使用以下方法:
myApp.prompt(text, [title, callbackOk, callbackCancel])
或者
myApp.prompt(text, [callbackOk, callbackCancel])
上述方法接受以下参数:
text - 显示带有文本的提示模态框。
title - 可选方法,显示带有标题的提示模态框。
callbackOk - 可选方法,提供在用户点击提示模态框上的“确定”按钮时执行的回调函数。
callbackCancel - 可选方法,提供在用户点击提示模态框上的“取消”按钮时执行的回调函数。
示例
以下示例演示了在 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>Prompt Modal</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">Prompt Modal</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 = "prompt-ok">Displays Prompt Modal with Text and Ok callback</a></p>
<p><a href = "#" class = "prompt-ok-cancel">Displays Prompt Modal With Text, Ok and Cancel callbacks</a></p>
<p><a href = "#" class = "prompt-title-ok">Displays Prompt Modal With Text, Title and Ok callbacks</a></p>
<p><a href = "#" class = "prompt-title-ok-cancel">Displays Prompt Modal With Text, Title, Ok and Cancel callbacks</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
});
$$('.prompt-ok').on('click', function () {
myApp.prompt('Enter your name?', function (value) {
myApp.alert('Name is "' + value + '" and you have clicked Ok button.');
});
});
$$('.prompt-ok-cancel').on('click', function () {
myApp.prompt('Enter your name?', function (value) {
myApp.alert('Name is "' + value + '" and you have clicked Ok button.');
},
function (value) {
myApp.alert('Name is "' + value + '" and you have clicked cancel button.');
}
);
});
$$('.prompt-title-ok').on('click', function () {
myApp.prompt('Enter your name?', 'My Title', function (value) {
myApp.alert('Name is "' + value + '" and you have clicked Ok button.');
});
});
$$('.prompt-title-ok-cancel').on('click', function () {
myApp.prompt('Enter your name?', 'My Title', function (value) {
myApp.alert('Name is "' + value + '" and you have clicked Ok button.');
},
function (value) {
myApp.alert('Name is "' + value + '" and you have clicked cancel button.');
}
);
});
</script>
</body>
</html>
输出
让我们执行以下步骤来查看上述代码是如何工作的:
将上述HTML代码保存为modal_prompt.html文件到您的服务器根目录。
打开此HTML文件,地址为https:///modal_prompt.html,输出结果如下所示。
当用户点击第一个选项时,它会链接到一个弹出窗口。当用户在框中输入文本后点击“确定”按钮,则会执行回调函数。
当用户点击第二个选项时,它会链接到一个弹出窗口,当用户点击“取消”按钮时,会执行回调函数。当用户在框中输入文本并点击“确定”按钮时,也会执行回调函数。
当用户点击第三个选项时,它会链接到一个带有文本和标题的弹出窗口。当用户在框中输入文本后点击“确定”按钮,则会执行回调函数。
当用户点击最后一个选项时,它会链接到一个带有文本和标题的弹出窗口,当用户点击“取消”按钮时会执行回调函数。当用户输入文本并点击“确定”按钮时,也会执行回调函数。
framework7_overlays.htm
广告