我正在尝试对用 javascript 编写的表单进行一些编辑,但是我真的只是熟悉这种语言。我正在尝试格式化几个按钮;为此,我想为他们添加一个类。有问题的按钮是“添加”和“取消”,它们使用以下功能呈现:
showAddDialog: function() {
$("#dialog").data("product",upsmart.products.pcounter);
$("#dialog").html(upsmart.products.createForm(upsmart.products.pcounter));
$("#photo_button").click(open_media_library);
upsmart.products.pcounter++;
$("#dialog").dialog({
width: 600,
modal: true,
buttons: {
"Add": upsmart.products.addProduct,
"Cancel": function() {
$(this).dialog("close");
}
}
});
},
我怎么能做到这一点?
谢谢你的帮助。