0
var el = $('#someElement');

el.data('f', function() {
  console.log(this); // return an object to the window
});

所以我想要从函数内部返回一个像“el”这样的对象的东西。

原因是该元素将被复制,我不知道该函数应用于哪个元素。

4

1 回答 1

1

你可以这样做(如果我理解正确,我不确定)

var el = $('#someElement');
var clone = el.clone();
el.data('f', function() {
  console.log(clone); // return an object to the window
});
于 2012-04-16T08:44:12.427 回答