在按钮单击时显示微调器图像的问题

时间:2014-01-16 12:46:53

标签: jquery

我点击了一个按钮,我打算显示一个微调图像

$("#btnSearch").bind('click', function () {
    if (lookupSearchValidation()) {
        $(this).toggle();

        //spiness image to display
        $("#loading").show();

        //method to populate the grid
        LoadLookUpSearchGrid();
    }
});

但图像显示在网格填充

之后

1 个答案:

答案 0 :(得分:1)

如果我误解了你,那就对不起!

$("#btnSearch").bind('click', function () {
    if (lookupSearchValidation()) {
        $(this).toggle();

        //spiness image to display
        $("#loading").show("fast",function(){
            //method to populate the grid
            LoadLookUpSearchGrid();
        });


    }
});