gpt4 book ai didi

javascript - JQuery 递归函数?

转载 作者:数据小太阳 更新时间:2023-10-29 04:26:41 26 4
gpt4 key购买 nike

如何从函数内部调用函数,使其成为递归的?这是我的代码,我在要开始递归的地方添加了注释:

$('a.previous-photos, a.next-photos').click(function() {
var id = $('#media-photo img').attr('id');
var href = $(this).attr('href');
href = href.split('/');
var p = href[href.length - 1];
var url = '/view/album-photos/id/' + id + '/p/' + p;

$.get(url, function(data) {
$('.box-content2').replaceWith('<div class="box-content2"' + data + '</div>');
});

// here I want to call the function again

return false;
});

最佳答案

您可以通过以下方式递归调用匿名函数

arguments.callee( .... );

参见 here了解更多信息。

关于javascript - JQuery 递归函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1368813/

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