notie.js是一款简单实用的纯JavaScript消息提示插件。通过notie.js插件你可以制作Alert提示框,确认框和带输入的消息框。
jar:引入<``script` `src``=``"js/notie.js"``></``script``>
notie.alert({
type: 3,
text: "ok",
stay: false,
time: 3,
position: "top"
})
属性介绍:
type alert类型,1代表Success,2代表Warning,3代表Error,4代表Information,5代表neutral
text alert里打印类容
stay 默认为false
time 弹出显示时间默认3秒,最小1秒
position 显示位置 默认top,也可以bottom
notie.confirm({
text: '确认更改此配置吗?<br><b>...</b>',
submitText: '确定',
cancelText: '取消',
position:top,
cancelCallback: function () {
}
,
submitCallback: function () {
}
});
notie.input({
text: '请输入你的年龄:',
submitText: '提交',
cancelText: '取消',
cancelCallback: function () {
notie.alert({type: 3, text: '你取消的本次输入'})
},
submitCallback: function (value) {
notie.alert({type: 1, text: '你的年龄是: ' + value})
},
value: '',
type: '',
placeholder: '你的年龄输在这里'
})
notie.select({
text: '请选择功能',
cancelText: '取消',
cancelCallback: function () {
notie.alert({ type: 5, text: '你取消了!' })
},
choices: [
{
text: '分享文章',
handler: function () {
notie.alert({ type: 1, text: '已分享!' })
}
},
{
text: '打开文章',
handler: function () {
notie.alert({ type: 1, text: '打开了!' })
}
},
{
type: 2,
text: '编辑文章',
handler: function () {
notie.alert({ type: 2, text: '开始编辑' })
}
},
{
type: 3,
text: '删除文章',
handler: function () {
notie.alert({ type: 3, text: '已删除!' })
}
}
]
})
本文出自:https://blog.csdn.net/renhuan28/article/details/81871090