我真的很难在函数中传递参数以在我的 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);
然后我开始我的 click 函数,将 getid 作为参数传递
$('.approve').click(function(calEvent, jsEvent, view, getid){
我的警报总是未定义,有什么想法吗?
alert(getid);