美文网首页我爱编程
jquery on() 给js动态新添加的元素 绑定的点击事件。

jquery on() 给js动态新添加的元素 绑定的点击事件。

作者: 明月888 | 来源:发表于2018-05-15 15:38 被阅读0次
                    $(document).on('click',".icon1-support",function(){
                        // $(".icon1-support").click("click",function(){
                        console.log("1");
                        let thumbup_api = ip +'/member/thumbup.do';
                        $.ajax({
                            url:thumbup_api,
                            data:{openId:openId},
                            success:function(d){
                                    console.log(d);
                                            if(d.resultCode==200){
                                                    if(d.data.code==200){
                                                        
                                                    }else{
                                                            layer.open({
                                                            content: d.resultMessage
                                                            ,skin: 'msg'
                                                            ,time: 2 //2秒后自动关闭
                                                            });
                                                    };
                                            }else{
                                                    layer.open({
                                                            content: d.resultMessage
                                                            ,skin: 'msg'
                                                            ,time: 2 //2秒后自动关闭
                                                    });
                                            };
                                    }
                            })
                    })
    

    相关文章

      网友评论

        本文标题:jquery on() 给js动态新添加的元素 绑定的点击事件。

        本文链接:https://www.haomeiwen.com/subject/sgxydftx.html