我正在使用的以下片段在按钮点击事件上显示动画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' />