当我要单击隐藏 div 时,我想显示图像。一切正常,但我想在显示 div 之前提醒消息并加载图像。该怎么办?我的 js 和 html 代码如下:
<h3><a class='show'> (Show/Hide) </a></h3>
<div id="show"></div>
和我的 js 代码
jQuery(document).ready(function()
{
$("a.show").click(function(e) {
// alert("Hi");
$('#check').animate({ opacity: "toggle" });
e.stopPropagation();
});
});
我想添加一条警报消息和一个名为 loading.gif 的加载图像。知道吗?