var el = $('#someElement');
el.data('f', function() {
console.log(this); // return an object to the window
});
所以我希望能从函数内部返回一个像“el”这样的对象。
原因是该元素将被复制,我不知道该函数应用于哪个元素。
答案 0 :(得分:1)
你可以做(如果我理解正确,我不确定)
var el = $('#someElement');
var clone = el.clone();
el.data('f', function() {
console.log(clone); // return an object to the window
});