我正在尝试使用此处的原始流沙代码
$(function() {
// bind radiobuttons in the form
var $filterType = $('#filter input[name="type"]');
var $filterSort = $('#filter input[name="sort"]');
// get the first collection
var $applications = $('#applications');
// clone applications to get a second collection
var $data = $applications.clone();
一切正常,除了 $('#applications') 中的元素已使用 jQuery 进行了轻微更改(例如,一些 div 元素已被隐藏,一些类已被交换)。使用 clone() 我只能设法克隆原始源代码。
有没有办法克隆 $('#applications') 的“实时”版本?