如何使用 jquery 单击按钮后在按钮旁边显示 ajax 加载图像
我有一个运行 ajax get 的按钮,这需要很长时间。在按钮右侧显示 ajax 加载图像的最简单方法是什么?
它是动态的(与布局中的硬编码div相比)
我可能会稍后在布局中移动按钮,所以我希望在单击事件之后(调用ajax之前)
$(selector).append("<img src='/images/ajax-loading1.gif' />");
,我尝试了这个:但这似乎并没有做任何事
i have a button that runs an ajax get which takes a long time. what is the easiest way of showing an ajax loading image RIGHT BESIDE to the right of the button.
i may move the button later in the layout so i wanted this to be dynamic (compared to a hard coded div in the layout)
after the click event (before the ajax was called), i tried this:
$(selector).append("<img src='/images/ajax-loading1.gif' />");
but that didn't seem to do anything
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可能需要
after
而不是append
。但考虑到 AJAX 完成后图标的删除,怎么样:
You probably want
after
instead ofappend
.But taking into account the removing of the icon after AJAX has finished, how about:
如果问题是图像的放置,那么为什么不对图像和按钮使用带有定位(可以根据需要更改)的 css 类。
如果问题是 ajax 运行缓慢,我认为我们需要更多信息。
If the issue is placement of the image, then why not use a css class with positioning (that could be changed as needed) for both the image and the button.
If the issue is the ajax running slow, I think we need more info.
在运行 ajax 调用之前,请使用 after() 函数:
然后在 ajax 请求完成后删除该元素:
Before you run the ajax call use the after() function:
Then after the ajax request is completed remove the element: