fm-dialog
安装
执行命令
npm install --save-dev fm-dialog
或者在 html 中直接引用
<script src="./dist/fm-dialog.min.js"></script>
使用方法
html 中添加引用
<link rel="stylesheet" href="./dist/fm-dialog.min.css">
CommonJS
var Dlg = ;Dlg;
Global
<script src="./dist/fm-dialog.min.js"></script>Dlg;
API
Dlg.show(id, content, options, callback)
id
默认“ishow”
content
html 模板
options
- width: 320
- height: 180
- title: "提示"
- template: true
- ok: null
- okText: "确定"
- cancel: null
- cancelText: "取消"
- lock: true
- quickClose: false
- auto: false
- timeOut: 3000
- zindex: 98
- closeBtn: false
- isMsg: false
- msgType: "default" //success, info, error, warning, inverse, muted
callback
function, 初始化完成回调函数
示例:
Dlg;
快速调用
若想快速调用,可以用以下 api ,它们的默认 id 均为 "i"+对应的 api 名称。
Dlg.confirm(content, ok)
content
确认对话框内容
ok
function, 确认回调函数
示例:
Dlg;
Dlg.msg(msg, type)
msg
消息内容
type
消息类型,default, success, info, error, warning, inverse, muted
示例:
Dlg;
Dlg.msglock(msg, type)
msg
消息内容
type
消息类型,default, success, info, error, warning, inverse, muted
示例:
Dlg;
Dlg.loading(tips)
tips
加载提示内容
示例:
Dlg;
Dlg.close(id)
id
要关闭的对象 id
示例:
Dlg;
Demo
demo: http://ifootmark.github.io/fm-dialog/demo.html
License
© allmeet.net