gpt4 book ai didi

jquery - 无法将 id 传递给 click 函数

转载 作者:行者123 更新时间:2023-12-01 06:23:11 24 4
gpt4 key购买 nike

我真的很难尝试在函数中传递参数以在我的 ajax 帖子页面中使用。

这是我的 fancybox 脚本,eventid 显示正常。

var fancyContent = ('<div class="header">approve booking for event id'  + eventid + '<a href="#" class="approve" id="' + eventid + '">yes</a><a href="#" class="approve">no</a></div>');
$.fancybox({
content: fancyContent
});

从点击的链接获取事件 ID

var getid = $('.approve').attr('id');

我的警报在这里显示 id 很好

alert(getid);

然后我开始点击函数,将 getid 作为参数传递

$('.approve').click(function(calEvent, jsEvent, view, getid){

我的警报始终未定义,有什么想法吗?

alert(getid);

最佳答案

要获取单击项目的 ID,您可以尝试这样做:

$('.approve').click(function() {
var id = $(this).attr('id');
});

关于jquery - 无法将 id 传递给 click 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14101230/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com