我怎么知道JQuery函数参数是什么?

时间:2015-11-05 17:10:10

标签: javascript jquery jquery-ui

我正在制作一个可排序的表格,我在http://www.foliotek.com/devblog/make-table-rows-sortable-using-jquery-ui-sortable/

找到了这段代码
// Return a helper with preserved width of cells
var fixHelper = function(e, ui) {
    ui.children().each(function() {
        $(this).width($(this).width());
    });
    return ui;
};

$("#sort tbody").sortable({
    helper: fixHelper
}).disableSelection();

写这篇文章的人怎么知道e和ui是什么,以便将它们用于函数参数?为什么会回归ui?

1 个答案:

答案 0 :(得分:2)

如果你阅读jQuery用户界面上的documentation for the helper option可排序,你会看到它说:

  

该函数接收事件和正在排序的元素。