在 Backbone-Forms 的文档中,提到您可以将提交按钮传递给表单。
submitButton {String}
如果提供,使用提供的文本在表单底部创建一个提交按钮
我这样做了,但它不起作用。
form = new Form({
fieldsets:[
{legend:'PART1', fields:['title', 'content', 'email']},
{legend:'PART2', fields:['country', 'sport']}],
submitButton: 'SEND',
}).render();