官方資料:http://www.layui.com/doc/modules/layer.html
在一個彈出框中新增個按鈕,點擊按鈕后執行自己的語句(返回上一頁並刷新)。
layer.open({title: '提示',offset: '100px',skin: 'layui-layer-lan',content:'確定',btn: ['確定'],
yes: function(index, layero){
window.location.href = document.referrer;
}
});