欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

layui笔记

程序员文章站 2022-03-02 12:25:25
...

1.layui监听 和 onclick事件

        $(document).on('click','.dianz',function(e){
            var id=e.currentTarget.dataset.index
            $.ajax({
                url: '/home/givetup',
                type: 'post',
                data: {
                    "id":id,
                },
                beforeSend: function () {
                    loading = layer.load();
                }, success: function (res) {
                    console.log(res)
                    layer.msg(res.msg, {time: 2000}, function () {
                        if (res.success) {
                            var idd='#'+id
                            $(idd).html(res.data)
                        }
                    })
                }, complete: function () {
                    layer.close(loading);
                }
            })
        })

 

相关标签: layui