jquery 消息窗口/对话框
我的一个页面中有一些 ajax 调用。完成后,我想显示一条简单的消息,让用户知道操作已完成。也许有一个“确定”按钮,他们可以单击该按钮来关闭窗口。如果我可以删除标题和那个可怕的“!”,Alert(“message”) 就会起作用。图标。
有jquery/javascript建议吗? -谢谢
I have some ajax calls in one of my pages. On complete I want do display a simple message letting the user know that the operation has been completed. maybe with an ok button that they can click to close the window. Alert("message") would work if I could remove the title and that scary "!" icon.
Any jquery/javascript sugestions? -Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看 jquery ui 对话框插件:
http://jqueryui.com/demos/dialog/
您可以自定义它以满足您的需求,并且添加您想要的任何类型的按钮。它只是对话框内的 HTML。
Check out the jquery ui Dialog plugin:
http://jqueryui.com/demos/dialog/
You can customize it to suit your needs, and add what ever kind of buttons you want. It's just HTML inside the dialog.
可以使用模式对话框。查看 jQuery UI 中的模式对话框 http://jqueryui.com/demos/dialog/
基本上当AJAX 请求已完成并成功,您可以使用“确定”按钮打开对话框并显示您想要的任何标题。
Could use a modal dialog. Check out the modal dialog in jQuery UI http://jqueryui.com/demos/dialog/
Basically when the AJAX request is completed and successful you can open your dialog with an ok button and display whatever title you would like.
我喜欢simplemodal。它还有一个确认样式对话框 - 这看起来类似于默认的警报/确认对话框。您可以在此处查看演示。
I like simplemodal. It also has a confirm style dialog - this looks similar to the default alert/confirm dialogs. You can see a demo here.