<link rel="stylesheet" href="component/pear/css/pear.css" /> 或 <link rel="stylesheet" href="component/pear/css/pear-module/toast.css" /> 并 <script src="component/layui/layui.js"></script> 并 <script src="component/pear/pear.js"></script>
layui.use(['toast', 'jquery', 'layer', 'code'], function() {
var toast = layui.toast;
toast.success({title: 'Caution',message: 'You forgot important data',position: 'topRight'});
toast.info({title: 'Caution',message: 'You forgot important data',position: 'topRight'});
toast.warning({title: 'Caution',message: 'You forgot important data',position: 'topRight'});
toast.error({title: 'Caution',message: 'You forgot important data',position: 'topRight'});
toast.question({title: 'Caution',message: 'You forgot important data',position: 'topRight'});
})
layui.use(['toast', 'jquery', 'layer', 'code'], function() {
var toast = layui.toast;
$(".toast-top-left-btn").click(function(){
toast.success({title: 'Caution',message: 'You forgot important data',position: 'topLeft'});
})
$(".toast-top-center-btn").click(function(){
toast.success({title: 'Caution',message: 'You forgot important data',position: 'topCenter'});
})
$(".toast-top-right-btn").click(function(){
toast.success({title: 'Caution',message: 'You forgot important data',position: 'topRight'});
})
$(".toast-bottom-left-btn").click(function(){
toast.success({title: 'Caution',message: 'You forgot important data',position: 'bottomLeft'});
})
$(".toast-bottom-center-btn").click(function(){
toast.success({title: 'Caution',message: 'You forgot important data',position: 'bottomCenter'});
})
$(".toast-bottom-right-btn").click(function(){
toast.success({title: 'Caution',message: 'You forgot important data',position: 'bottomRight'});
})
})
layui.use(['toast', 'jquery', 'layer', 'code'], function() {
var toast = layui.toast;
toast.destroy();
})