我正在显示和隐藏一个包含加载/等待 gif 图像的 div。单击我调用的按钮$("#div").show()
并.hide()
在单击功能结束时。但图像一般不显示。当我将断点放在.show()
行旁边时,它会显示图像。
我也试过.css("display","")
,但它不会奏效。
请提出任何其他方式,或告诉我可能是什么问题。
谢谢。
我的代码如下所示
$("#button").click(function(){
$("#div").show(); // showing image so that user will know that a process is going on.
//other working code
$("#div").hide(); // hiding will indicate process completion
});