外部JS文件中的JQuery

时间:2013-10-31 04:13:48

标签: javascript jquery

我正在尝试在加载html页面时执行一些JavaScript。调用top方法populateSelectWithDates(),但jquery部分不调用。有什么想法吗?

function doInitialPopulation() {
    //This works
    populateSelectWithDates();

    //This does not
    $(document).ready(function() {
        alert('ok');
    //Credit to: http://www.pewpewlaser.com/articles/jquery-tablesorter
        //  Adds sort_header class to ths
        $(".sortable th").addClass("sort_header");

        //  Adds alternating row coloring to table.
        $(".sortable").tablesorter({widgets: ["zebra"]});

        //  Adds "over" class to rows on mouseover
        $(".sortable tr").mouseover(function() {
            $(this).addClass("over");
        });

        //  Removes "over" class from rows on mouseout
        $(".sortable tr").mouseout(function() {
            $(this).removeClass("over");
        });

    });
}

1 个答案:

答案 0 :(得分:0)

我没有看到使用$(document).ready(function() {尝试删除它。如果警报('确定')有效,请告诉我们。我们还可以看到函数populateSelectWithDates()吗?