1

我正在使用Smart Admin Theme,尤其是 Ajax 版本。当我按下右上角的注销按钮时,它会显示一个很好的警报确认消息。

我正在尝试了解如何在其他请求中使用它?例如,如果有人要删除一个重要资源,我希望他们看到它。但我不确定主题制作者是否已经给出了触发它的方法。

我知道data-attributes与它相关的是:

data-logout-msg="You can improve your security further after logging out by closing this opened browser"

但我不确定如何在我的应用程序的另一个链接上使用它。有人知道吗?我可以在某处调用 API 方法吗?

4

1 回答 1

7
$("#smart-mod-eg1").click(function(e) {
            $.SmartMessageBox({
                标题:“智能警报!”,
                content : "这是一个确认框。可以为按钮回调编程",
                按钮:'[否][是]'
            },功能(按钮按下){
                if (ButtonPressed === "是") {

                    $.smallBox({
                        title : "回调函数",
                        内容:“你按下是... ”,
                        颜色:“#659265”,
                        iconSmall : "fa fa-check fa-2x fadeInRight 动画",
                        超时:4000
                    });
                }
                if (ButtonPressed === "否") {
                    $.smallBox({
                        title : "回调函数",
                        内容:“您按下否... ”,
                        颜色:“#C46A69”,
                        iconSmall : "fa fa-times fa-2x fadeInRight 动画",
                        超时:4000
                    });
                }

            });
            e.preventDefault();
        })

于 2015-05-26T11:51:54.187 回答