xhr请求后刷新jquery选择器

时间:2019-04-23 14:36:02

标签: javascript jquery

我已经在页面加载中定义了这样的元素:

let cycleContainer = $('.start-cycling'),
participantActiveButton = $('#participant-is-here');

在加载页面时,这两个元素都不存在。 我使用XHR请求和jQuery加载这些元素。 那么,在XHR处理之后,如何“刷新”元素列表?

不给变量一个新值。像cycleContainer.refresh()这样的方法会很好。

我找到了this主题,该主题被提及为解决方案:

$.fn.refresh = function() {
    return $(this.selector);
};

但是this.selector在我的Chrome浏览器中没有返回任何内容。

0 个答案:

没有答案