Jquery 对话框 - “动态渲染”按钮
有没有办法控制在 Jquery 对话框中显示哪些按钮?
场景:
也许存在程序逻辑,在保存数据后,对话框能够显示“删除”按钮。 (意思是在对话框内提交表单后,整个对话框都会刷新?>>这包括正在加载的对话框上的按钮?)
有什么建议吗?
Is there a way to control which buttons to display in a Jquery Dialog?
Scenario:
Perhaps there might be program logic whereby after saving the data, the dialog is then able to show a "Delete" button. (meaning after a form submit within the dialog, the entire dialog refreshes? >> this includes the buttons on the dialog being loaded?)
Any advice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 jQuery 对话框上按钮选项的 getter 和 setter 方法来执行此操作。以下示例取自 jQuery UI 文档:
因此在您的示例中您可以执行以下操作:
添加
删除
这是一个工作示例。
You can do this using the getter and setter methods on the buttons options on the jQuery dialog. The following example is taken from the jQuery UI docs:
So in your example you could do:
Adding
Removing
Here's a working example.