我可以使用javascript动态创建引导按钮吗?
例如在jQuery UI中,您可以执行以下操作:
JQ("#dialog_component").dialog({
bgiframe: true,
draggable: false,
autoOpen: false,
modal: true,
show: 'fade',
position: 'top',
hide: 'fade',
width: 500,
resizable: false,
buttons: btns, // these would be the translated buttons
});
我想将这个btns
变量作为buttons
传递给引导程序modal
,就像我在jQuery UI中一样。但是从documentation开始,似乎并没有这样的东西。有没有解决方法呢?