获取 Jquery UI 对话框上的按钮,然后使用 ID 属性向其添加按钮
我可以使用以下代码向对话框添加一个按钮:
var buttonName = "test";
var func = new function(){alert("")};
var buttons = $('#SomeID').dialog('option', 'buttons');
buttons[buttonName] = func;
$('#SomeID').dialog('option', 'buttons', buttons);
但我希望我的按钮也有一个 ID,如何添加具有 ID 属性的按钮???
I can add a button to the dialog with the following code:
var buttonName = "test";
var func = new function(){alert("")};
var buttons = $('#SomeID').dialog('option', 'buttons');
buttons[buttonName] = func;
$('#SomeID').dialog('option', 'buttons', buttons);
But I want my button to also have an ID, how do I add a button with an ID attribute???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这对我有用。您使用按钮数组并使用
push
函数向其中添加另一个元素。现在您只需弄清楚如何将功能附加到它即可。This works for me. You use the buttons array and use the
push
function to add another element to it. Now you'll only have to figure out how to attach the functionality to it.