写jquery插件

时间:2010-04-26 16:50:02

标签: jquery

我写了一个jquery函数,现在我想用它作为一个插件,所以我可以使用它超过1个地方。代码看起来像这样:

    function loadTable(){
    $.post("includes/action.php", {action: "gettable"}, function(html){
        $("#tblstudents tbody").html(html);
        $("#tblstudents")
            .tablesorter({widthFixed: false, widgets: ['zebra'], sortList: [[0,0]]})
            .tablesorterPager({container: $("#pager")})
            .tablesorterFilter({filterContainer: $("#filter-box"), filterClearContainer: $("#filter-clear-button")});
    });
}

我希望它具有在$ .post函数和$(“#pager”),$(“#filter-box”)和$(“#中设置”includes / action.php“和”gettable“的功能。来自$(“#tblstudents”)的filter-clear-button“)。任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:3)

你应该检查这个链接: http://docs.jquery.com/Plugins/Authoring

或者在这里你可以找到一步一步的教程: http://www.queness.com/post/112/a-really-simple-jquery-plugin-tutorial 它解释了如何为插件定义自己的选项。