首页 前端知识 jQuery点击事件拼接传参

jQuery点击事件拼接传参

2024-08-27 09:08:57 前端知识 前端哥 671 463 我要收藏
给每一个渲染出来的结构添加点击事件,并传参
    volunteer: function(id) {
        window.location.href = DOMAIN+"/Cloud/Module/Information/Show/Show.html?id="+id;
    },
    // 志愿风采
    elegantArt: function() {
        $.ajax({
            url: API + '/front/information/getList?currentPage=1&type=-1&informationCategoryId=64016df6772cf17748caf276',
            type: 'GET',
            success: function(data) {
                let html = ''
                $.each(data.data, function (i, item) {
                        html += '<div class="artContent"  οnclick="index.volunteer(`'+ item.id +'`)">\n' +
                            '   <img  src="' + IMGPATH + item.imagePath + '">\n' +
                            '   <p class="art_titlep">' + item.title.replace(/(.{18})(.*)?/g, '$1...') + '</p>\n' +
                            '   </div>\n' +
                            '   </div>'
                })
                $("#artList").html(html)
            }
        })
    }

在这里插入图片描述
最外层需要再拼接一个多行串,把它变成字符串才可以识别

转载请注明出处或者链接地址:https://www.qianduange.cn//article/16985.html
标签
评论
会员中心 联系我 留言建议 回顶部
复制成功!