动画gif显示仍然而不是旋转

时间:2014-01-19 09:32:29

标签: jquery

我正在使用的以下片段在按钮点击事件上显示动画gif以显示加载gif,直到数据从服务器返回,但它只显示静止图像而不是动画旋转,这里是错误的

在jquery中

$("#btnSearch").jqxButton({
    theme: theme,
    width: '80',
    height: '25'
});
$("#btnSearch").bind('click', function () {
    if (lookupSearchValidation()) {
        $(this).toggle();
        $("#loading").show("fast", function () {
            //method to populate the grid
            LoadLookUpSearchGrid();
        });
    }
});

in html

<img id="loading" src="Images/spinner.gif" alt="" style="display:none;"/>
<input type="button" value="Search" id='btnSearch' />

0 个答案:

没有答案