有没有人知道一个变通办法,使动画GIF继续动画后,你点击一个链接或在你的IE页面上提交一个表格?这在其他浏览器中工作得很好。
谢谢。
发布于 2013-01-24 16:53:06
这是一个使用method="post“提交表单的jsFiddle。微调控件是在表单提交事件上添加的。
$("form").bind("submit", onFormSubmit);
function onFormSubmit() {
setTimeout(showSpinner, 1);
}
function showSpinner() {
$("body").append($('<img id="spinner" src="spinner.gif" alt="Spinner" />'));
}See jsFiddle code here
Test it in your IE browser here
https://stackoverflow.com/questions/780560
复制相似问题