我在JSP中添加了一个加载gif,以便在servlet运行时单击按钮后显示。问题是gif是修复的,而不是Eclipse和谷歌Chrome上的动画。 这是我的代码:
<form action="search " method="post">
Informationt: <input type="text" name="information"
size="30">
<input type="submit" value="Search"
onclick="document.getElementById('loader').style.display = 'block';">
<img id="loader" src="images/loader.gif" style="display: none; margin-left: auto; margin-right: auto;
width: 100px; height: 100px; " />
</form>
在CSS中,
#loader { }
有没有办法让它运行?