【发布时间】:2011-08-28 05:10:59
【问题描述】:
我有一个依赖于这个 Script Sort.js 的 Jquery 脚本。任何机构都可以这是如何工作的
jQuery.fn.sort = (function(){
var sort = [].sort;
return function(comparator, getSortable) {
getSortable = getSortable || function(){return this;};
var placements = this.map(function(){
var sortElement = getSortable.call(this),
parentNode = sortElement.parentNode,
// Since the element itself will change position, we have
// to have some way of storing it's original position in
// the DOM. The easiest way is to have a 'flag' node:
nextSibling = parentNode.insertBefore(
document.createTextNode(''),
sortElement.nextSibling
);
return function() {
if (parentNode === this) {
throw new Error(
"You can't sort elements if any one is a descendant of another."
);
}
// Insert before flag:
parentNode.insertBefore(this, nextSibling);
// Remove flag:
parentNode.removeChild(nextSibling);
};
});
return sort.call(this, comparator).each(function(i){
placements[i].call(getSortable.call(this));
});
};
})();
我从这个链接http://qd9.co.uk/projects/jQuery-Plugins/sort/demo.html得到这个脚本
【问题讨论】:
-
你能缩小你的问题范围吗?它过于宽泛。你不明白哪些部分?
-
@patrick dw:很抱歉这样说。我无法理解任何代码行。除了我知道这是一个闭包
标签: jquery jquery-ui jquery-selectors